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

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

Issue 2560713002: Move RemoteDevice from //components/proximity_auth to //components/cryptauth so that it can be easi… (Closed)
Patch Set: Add cryptauth dependency. Created 4 years 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 static_library("ble") { 7 static_library("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",
(...skipping 12 matching lines...) Expand all
23 "bluetooth_low_energy_weave_packet_receiver.h", 23 "bluetooth_low_energy_weave_packet_receiver.h",
24 "fake_wire_message.cc", 24 "fake_wire_message.cc",
25 "fake_wire_message.h", 25 "fake_wire_message.h",
26 "pref_names.cc", 26 "pref_names.cc",
27 "pref_names.h", 27 "pref_names.h",
28 "remote_attribute.h", 28 "remote_attribute.h",
29 ] 29 ]
30 30
31 deps = [ 31 deps = [
32 "//base", 32 "//base",
33 "//components/cryptauth",
33 "//components/prefs", 34 "//components/prefs",
34 "//components/proximity_auth/logging", 35 "//components/proximity_auth/logging",
35 36
36 # TODO(https://crbug.com/562683): This component has a circular dependency 37 # TODO(https://crbug.com/562683): This component has a circular dependency
37 # with the root proximity auth target. It is whitelisted in that target for 38 # with the root proximity auth target. It is whitelisted in that target for
38 # includes. 39 # includes.
39 #"//components/proximity_auth", 40 #"//components/proximity_auth",
40 "//device/bluetooth", 41 "//device/bluetooth",
41 "//net", 42 "//net",
42 ] 43 ]
(...skipping 13 matching lines...) Expand all
56 "bluetooth_low_energy_weave_client_connection_unittest.cc", 57 "bluetooth_low_energy_weave_client_connection_unittest.cc",
57 "bluetooth_low_energy_weave_packet_generator_unittest.cc", 58 "bluetooth_low_energy_weave_packet_generator_unittest.cc",
58 "bluetooth_low_energy_weave_packet_receiver_unittest.cc", 59 "bluetooth_low_energy_weave_packet_receiver_unittest.cc",
59 ] 60 ]
60 61
61 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 62 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
62 63
63 deps = [ 64 deps = [
64 ":ble", 65 ":ble",
65 "//base/test:test_support", 66 "//base/test:test_support",
67 "//components/cryptauth",
66 "//components/prefs:test_support", 68 "//components/prefs:test_support",
67 "//components/proximity_auth:test_support", 69 "//components/proximity_auth:test_support",
68 "//device/bluetooth:mocks", 70 "//device/bluetooth:mocks",
69 "//testing/gmock", 71 "//testing/gmock",
70 "//testing/gtest", 72 "//testing/gtest",
71 ] 73 ]
72 74
73 public_deps = [ 75 public_deps = [
74 "//components/cryptauth/proto", 76 "//components/cryptauth/proto",
75 ] 77 ]
76 } 78 }
OLDNEW
« no previous file with comments | « components/proximity_auth/BUILD.gn ('k') | components/proximity_auth/ble/bluetooth_low_energy_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698