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

Side by Side Diff: components/proximity_auth/ble/BUILD.gn

Issue 2053013002: Weave Packet Receiver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@proximity_auth_weave_migration
Patch Set: code complete built Created 4 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("ble") { 7 source_set("ble") {
8 sources = [ 8 sources = [
9 "bluetooth_low_energy_characteristics_finder.cc", 9 "bluetooth_low_energy_characteristics_finder.cc",
10 "bluetooth_low_energy_characteristics_finder.h", 10 "bluetooth_low_energy_characteristics_finder.h",
11 "bluetooth_low_energy_connection.cc", 11 "bluetooth_low_energy_connection.cc",
12 "bluetooth_low_energy_connection.h", 12 "bluetooth_low_energy_connection.h",
13 "bluetooth_low_energy_connection_finder.cc", 13 "bluetooth_low_energy_connection_finder.cc",
14 "bluetooth_low_energy_connection_finder.h", 14 "bluetooth_low_energy_connection_finder.h",
15 "bluetooth_low_energy_device_whitelist.cc", 15 "bluetooth_low_energy_device_whitelist.cc",
16 "bluetooth_low_energy_device_whitelist.h", 16 "bluetooth_low_energy_device_whitelist.h",
17 "bluetooth_low_energy_weave_packet_generator.cc",
18 "bluetooth_low_energy_weave_packet_generator.h",
19 "bluetooth_low_energy_weave_packet_receiver.cc",
20 "bluetooth_low_energy_weave_packet_receiver.h",
17 "fake_wire_message.cc", 21 "fake_wire_message.cc",
18 "fake_wire_message.h", 22 "fake_wire_message.h",
19 "pref_names.cc", 23 "pref_names.cc",
20 "pref_names.h", 24 "pref_names.h",
21 "remote_attribute.h", 25 "remote_attribute.h",
22 ] 26 ]
23 27
24 deps = [ 28 deps = [
25 "//base", 29 "//base",
26 "//components/prefs", 30 "//components/prefs",
(...skipping 12 matching lines...) Expand all
39 ] 43 ]
40 } 44 }
41 45
42 source_set("unit_tests") { 46 source_set("unit_tests") {
43 testonly = true 47 testonly = true
44 sources = [ 48 sources = [
45 "bluetooth_low_energy_characteristics_finder_unittest.cc", 49 "bluetooth_low_energy_characteristics_finder_unittest.cc",
46 "bluetooth_low_energy_connection_finder_unittest.cc", 50 "bluetooth_low_energy_connection_finder_unittest.cc",
47 "bluetooth_low_energy_connection_unittest.cc", 51 "bluetooth_low_energy_connection_unittest.cc",
48 "bluetooth_low_energy_device_whitelist_unittest.cc", 52 "bluetooth_low_energy_device_whitelist_unittest.cc",
53 "bluetooth_low_energy_weave_packet_generator_unittest.cc",
49 ] 54 ]
50 55
51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 56 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
52 57
53 deps = [ 58 deps = [
54 ":ble", 59 ":ble",
55 "//base/test:test_support", 60 "//base/test:test_support",
56 "//components/prefs:test_support", 61 "//components/prefs:test_support",
57 "//components/proximity_auth:test_support", 62 "//components/proximity_auth:test_support",
58 "//device/bluetooth:mocks", 63 "//device/bluetooth:mocks",
59 "//testing/gmock", 64 "//testing/gmock",
60 "//testing/gtest", 65 "//testing/gtest",
61 ] 66 ]
62 67
63 public_deps = [ 68 public_deps = [
64 "//components/proximity_auth/cryptauth/proto", 69 "//components/proximity_auth/cryptauth/proto",
65 ] 70 ]
66 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698