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

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

Issue 2700873002: [CrOS Tether] Create MessageWrapper, a wrapper class for proto messages sent for tethering. This cl… (Closed)
Patch Set: Created 3 years, 10 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 "ble_advertisement_device_queue.cc", 9 "ble_advertisement_device_queue.cc",
10 "ble_advertisement_device_queue.h", 10 "ble_advertisement_device_queue.h",
11 "ble_advertiser.cc", 11 "ble_advertiser.cc",
12 "ble_advertiser.h", 12 "ble_advertiser.h",
13 "ble_constants.cc", 13 "ble_constants.cc",
14 "ble_constants.h", 14 "ble_constants.h",
15 "ble_scanner.cc", 15 "ble_scanner.cc",
16 "ble_scanner.h", 16 "ble_scanner.h",
17 "host_scan_scheduler.cc", 17 "host_scan_scheduler.cc",
18 "host_scan_scheduler.h", 18 "host_scan_scheduler.h",
19 "host_scanner.cc", 19 "host_scanner.cc",
20 "host_scanner.h", 20 "host_scanner.h",
21 "initializer.cc", 21 "initializer.cc",
22 "initializer.h", 22 "initializer.h",
23 "local_device_data_provider.cc", 23 "local_device_data_provider.cc",
24 "local_device_data_provider.h", 24 "local_device_data_provider.h",
25 "message_wrapper.cc",
26 "message_wrapper.h",
25 ] 27 ]
26 28
27 deps = [ 29 deps = [
28 "//base", 30 "//base",
29 "//chromeos", 31 "//chromeos",
30 "//chromeos/components/tether/proto", 32 "//chromeos/components/tether/proto",
31 "//components/cryptauth", 33 "//components/cryptauth",
32 "//components/proximity_auth/logging", 34 "//components/proximity_auth/logging",
33 "//device/bluetooth", 35 "//device/bluetooth",
34 ] 36 ]
(...skipping 24 matching lines...) Expand all
59 61
60 source_set("unit_tests") { 62 source_set("unit_tests") {
61 testonly = true 63 testonly = true
62 64
63 sources = [ 65 sources = [
64 "ble_advertisement_device_queue_unittest.cc", 66 "ble_advertisement_device_queue_unittest.cc",
65 "ble_advertiser_unittest.cc", 67 "ble_advertiser_unittest.cc",
66 "ble_scanner_unittest.cc", 68 "ble_scanner_unittest.cc",
67 "host_scan_scheduler_unittest.cc", 69 "host_scan_scheduler_unittest.cc",
68 "local_device_data_provider_unittest.cc", 70 "local_device_data_provider_unittest.cc",
71 "message_wrapper_unittest.cc",
69 ] 72 ]
70 73
71 deps = [ 74 deps = [
72 ":test_support", 75 ":test_support",
73 ":tether", 76 ":tether",
74 "//base/test:test_support", 77 "//base/test:test_support",
75 "//chromeos", 78 "//chromeos",
76 "//chromeos/components/tether/proto", 79 "//chromeos/components/tether/proto",
77 "//components/cryptauth", 80 "//components/cryptauth",
78 "//components/cryptauth:test_support", 81 "//components/cryptauth:test_support",
79 "//device/bluetooth", 82 "//device/bluetooth",
80 "//device/bluetooth:mocks", 83 "//device/bluetooth:mocks",
81 "//testing/gmock", 84 "//testing/gmock",
82 "//testing/gtest", 85 "//testing/gtest",
83 ] 86 ]
84 } 87 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/message_wrapper.h » ('j') | chromeos/components/tether/message_wrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698