Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: chromeos/components/tether/BUILD.gn

Issue 2801353002: [CrOS Tether] Fill out the Initializer class. Tether will now initialize fully once the flag is ena… (Closed)
Patch Set: Added missing dep. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos") 5 assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
6 6
7 static_library("tether") { 7 static_library("tether") {
8 sources = [ 8 sources = [
9 "active_host.cc", 9 "active_host.cc",
10 "active_host.h", 10 "active_host.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ] 56 ]
57 57
58 deps = [ 58 deps = [
59 "//base", 59 "//base",
60 "//chromeos", 60 "//chromeos",
61 "//chromeos/components/tether/proto", 61 "//chromeos/components/tether/proto",
62 "//components/cryptauth", 62 "//components/cryptauth",
63 "//components/cryptauth/ble", 63 "//components/cryptauth/ble",
64 "//components/prefs", 64 "//components/prefs",
65 "//components/proximity_auth/logging", 65 "//components/proximity_auth/logging",
66 "//components/signin/core/browser",
66 "//device/bluetooth", 67 "//device/bluetooth",
67 "//ui/gfx", 68 "//ui/gfx",
68 "//ui/message_center", 69 "//ui/message_center",
69 ] 70 ]
70 71
71 public_deps = [ 72 public_deps = [
72 "//components/cryptauth/proto", 73 "//components/cryptauth/proto",
73 ] 74 ]
74 } 75 }
75 76
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "active_host_unittest.cc", 116 "active_host_unittest.cc",
116 "ble_advertisement_device_queue_unittest.cc", 117 "ble_advertisement_device_queue_unittest.cc",
117 "ble_advertiser_unittest.cc", 118 "ble_advertiser_unittest.cc",
118 "ble_connection_manager_unittest.cc", 119 "ble_connection_manager_unittest.cc",
119 "ble_scanner_unittest.cc", 120 "ble_scanner_unittest.cc",
120 "connect_tethering_operation_unittest.cc", 121 "connect_tethering_operation_unittest.cc",
121 "host_scan_device_prioritizer_unittest.cc", 122 "host_scan_device_prioritizer_unittest.cc",
122 "host_scan_scheduler_unittest.cc", 123 "host_scan_scheduler_unittest.cc",
123 "host_scanner_operation_unittest.cc", 124 "host_scanner_operation_unittest.cc",
124 "host_scanner_unittest.cc", 125 "host_scanner_unittest.cc",
126 "initializer_unittest.cc",
125 "keep_alive_operation_unittest.cc", 127 "keep_alive_operation_unittest.cc",
126 "keep_alive_scheduler_unittest.cc", 128 "keep_alive_scheduler_unittest.cc",
127 "local_device_data_provider_unittest.cc", 129 "local_device_data_provider_unittest.cc",
128 "message_transfer_operation_unittest.cc", 130 "message_transfer_operation_unittest.cc",
129 "message_wrapper_unittest.cc", 131 "message_wrapper_unittest.cc",
130 "tether_connector_unittest.cc", 132 "tether_connector_unittest.cc",
131 "tether_host_fetcher_unittest.cc", 133 "tether_host_fetcher_unittest.cc",
132 "wifi_hotspot_connector_unittest.cc", 134 "wifi_hotspot_connector_unittest.cc",
133 ] 135 ]
134 136
135 deps = [ 137 deps = [
136 ":test_support", 138 ":test_support",
137 ":tether", 139 ":tether",
138 "//base/test:test_support", 140 "//base/test:test_support",
139 "//chromeos", 141 "//chromeos",
140 "//chromeos:test_support", 142 "//chromeos:test_support",
141 "//chromeos/components/tether/proto", 143 "//chromeos/components/tether/proto",
142 "//components/cryptauth", 144 "//components/cryptauth",
143 "//components/cryptauth:test_support", 145 "//components/cryptauth:test_support",
144 "//components/cryptauth/ble", 146 "//components/cryptauth/ble",
145 "//components/prefs:test_support", 147 "//components/prefs:test_support",
148 "//components/signin/core/browser:test_support",
146 "//device/bluetooth", 149 "//device/bluetooth",
147 "//device/bluetooth:mocks", 150 "//device/bluetooth:mocks",
148 "//testing/gmock", 151 "//testing/gmock",
149 "//testing/gtest", 152 "//testing/gtest",
150 "//ui/message_center:test_support", 153 "//ui/message_center:test_support",
151 ] 154 ]
152 } 155 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/session/user_session_manager.cc ('k') | chromeos/components/tether/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698