# Copyright 2026 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Lives in its own target to keep the signin dependency out of the core # transport. source_set("oauth") { sources = [ "oauth_stream_connection_delegate.cc", "oauth_stream_connection_delegate.h", ] public_deps = [ "//base", "//components/browser_actuator/internal/transport", "//components/signin/public/base", "//components/signin/public/identity_manager", "//google_apis", ] deps = [ "//net", "//services/network/public/cpp", ] } source_set("unit_tests") { testonly = true sources = [ "oauth_stream_connection_delegate_unittest.cc" ] deps = [ ":oauth", "//base", "//base/test:test_support", "//components/browser_actuator/internal/transport", "//components/browser_actuator/internal/transport/test_support", "//components/signin/public/identity_manager:test_support", "//net", "//services/network/public/cpp", "//testing/gmock", "//testing/gtest", ] visibility = [ "//components/browser_actuator/internal:unit_tests" ] }