OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") # For generate_jni(). | 9 import("//build/config/android/rules.gni") # For generate_jni(). |
10 } | 10 } |
(...skipping 19 matching lines...) Loading... |
30 "bluetooth/bluetooth_local_gatt_characteristic_unittest.cc", | 30 "bluetooth/bluetooth_local_gatt_characteristic_unittest.cc", |
31 "bluetooth/bluetooth_local_gatt_descriptor_unittest.cc", | 31 "bluetooth/bluetooth_local_gatt_descriptor_unittest.cc", |
32 "bluetooth/bluetooth_local_gatt_service_unittest.cc", | 32 "bluetooth/bluetooth_local_gatt_service_unittest.cc", |
33 "bluetooth/bluetooth_low_energy_win_unittest.cc", | 33 "bluetooth/bluetooth_low_energy_win_unittest.cc", |
34 "bluetooth/bluetooth_remote_gatt_characteristic_unittest.cc", | 34 "bluetooth/bluetooth_remote_gatt_characteristic_unittest.cc", |
35 "bluetooth/bluetooth_remote_gatt_descriptor_unittest.cc", | 35 "bluetooth/bluetooth_remote_gatt_descriptor_unittest.cc", |
36 "bluetooth/bluetooth_remote_gatt_service_unittest.cc", | 36 "bluetooth/bluetooth_remote_gatt_service_unittest.cc", |
37 "bluetooth/bluetooth_service_record_win_unittest.cc", | 37 "bluetooth/bluetooth_service_record_win_unittest.cc", |
38 "bluetooth/bluetooth_task_manager_win_unittest.cc", | 38 "bluetooth/bluetooth_task_manager_win_unittest.cc", |
39 "bluetooth/bluetooth_uuid_unittest.cc", | 39 "bluetooth/bluetooth_uuid_unittest.cc", |
| 40 "bluetooth/device_unittest.cc", |
40 "bluetooth/string_util_icu_unittest.cc", | 41 "bluetooth/string_util_icu_unittest.cc", |
41 "bluetooth/test/bluetooth_gatt_server_test.cc", | 42 "bluetooth/test/bluetooth_gatt_server_test.cc", |
42 "bluetooth/test/bluetooth_gatt_server_test.h", | 43 "bluetooth/test/bluetooth_gatt_server_test.h", |
43 "bluetooth/test/bluetooth_test.cc", | 44 "bluetooth/test/bluetooth_test.cc", |
44 "bluetooth/test/bluetooth_test.h", | 45 "bluetooth/test/bluetooth_test.h", |
45 "bluetooth/test/bluetooth_test_android.cc", | 46 "bluetooth/test/bluetooth_test_android.cc", |
46 "bluetooth/test/bluetooth_test_android.h", | 47 "bluetooth/test/bluetooth_test_android.h", |
47 "bluetooth/test/bluetooth_test_mac.h", | 48 "bluetooth/test/bluetooth_test_mac.h", |
48 "bluetooth/test/bluetooth_test_mac.mm", | 49 "bluetooth/test/bluetooth_test_mac.mm", |
49 "bluetooth/test/bluetooth_test_win.cc", | 50 "bluetooth/test/bluetooth_test_win.cc", |
(...skipping 17 matching lines...) Loading... |
67 ] | 68 ] |
68 | 69 |
69 deps = [ | 70 deps = [ |
70 "//base/test:test_support", | 71 "//base/test:test_support", |
71 "//base/third_party/dynamic_annotations:dynamic_annotations", | 72 "//base/third_party/dynamic_annotations:dynamic_annotations", |
72 "//device/base/synchronization", | 73 "//device/base/synchronization", |
73 "//device/battery", | 74 "//device/battery", |
74 "//device/battery:mojo_bindings", | 75 "//device/battery:mojo_bindings", |
75 "//device/bluetooth", | 76 "//device/bluetooth", |
76 "//device/bluetooth:mocks", | 77 "//device/bluetooth:mocks", |
| 78 "//device/bluetooth:mojo", |
77 "//device/gamepad", | 79 "//device/gamepad", |
78 "//device/gamepad:test_helpers", | 80 "//device/gamepad:test_helpers", |
79 "//device/generic_sensor", | 81 "//device/generic_sensor", |
80 "//device/generic_sensor:testing", | 82 "//device/generic_sensor:testing", |
81 "//device/geolocation:unittests", | 83 "//device/geolocation:unittests", |
82 "//device/power_save_blocker", | 84 "//device/power_save_blocker", |
83 "//device/wake_lock", | 85 "//device/wake_lock", |
84 "//mojo/common", | 86 "//mojo/common", |
85 "//mojo/edk/system", | 87 "//mojo/edk/system", |
86 "//mojo/public/cpp/bindings", | 88 "//mojo/public/cpp/bindings", |
(...skipping 184 matching lines...) Loading... |
271 ] | 273 ] |
272 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] | 274 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] |
273 } | 275 } |
274 | 276 |
275 java_cpp_enum("bluetooth_test_javagen") { | 277 java_cpp_enum("bluetooth_test_javagen") { |
276 sources = [ | 278 sources = [ |
277 "bluetooth/test/bluetooth_test.h", | 279 "bluetooth/test/bluetooth_test.h", |
278 ] | 280 ] |
279 } | 281 } |
280 } | 282 } |
OLD | NEW |