OLD | NEW |
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 import("//build/config/features.gni") | 4 import("//build/config/features.gni") |
5 | 5 |
6 if (is_android) { | 6 if (is_android) { |
7 import("//build/config/android/rules.gni") # For generate_jni(). | 7 import("//build/config/android/rules.gni") # For generate_jni(). |
8 } | 8 } |
9 | 9 |
10 config("bluetooth_config") { | 10 config("bluetooth_config") { |
(...skipping 14 matching lines...) Expand all Loading... |
25 "//device/bluetooth/public/interfaces/connect_result_type_converter.h", | 25 "//device/bluetooth/public/interfaces/connect_result_type_converter.h", |
26 "//device/bluetooth/public/interfaces/gatt_result_type_converter.h", | 26 "//device/bluetooth/public/interfaces/gatt_result_type_converter.h", |
27 "adapter.cc", | 27 "adapter.cc", |
28 "adapter.h", | 28 "adapter.h", |
29 "adapter_factory.cc", | 29 "adapter_factory.cc", |
30 "adapter_factory.h", | 30 "adapter_factory.h", |
31 "device.cc", | 31 "device.cc", |
32 "device.h", | 32 "device.h", |
33 "discovery_session.cc", | 33 "discovery_session.cc", |
34 "discovery_session.h", | 34 "discovery_session.h", |
| 35 "test/fake_bluetooth.cc", |
| 36 "test/fake_bluetooth.h", |
35 ] | 37 ] |
36 | 38 |
37 public_deps = [ | 39 public_deps = [ |
38 ":bluetooth", | 40 ":bluetooth", |
39 "//device/bluetooth/public/interfaces:experimental_interfaces", | 41 "//device/bluetooth/public/interfaces:experimental_interfaces", |
40 "//mojo/public/cpp/bindings", | 42 "//mojo/public/cpp/bindings", |
41 ] | 43 ] |
42 } | 44 } |
43 | 45 |
44 component("bluetooth") { | 46 component("bluetooth") { |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 } | 413 } |
412 | 414 |
413 android_library("java") { | 415 android_library("java") { |
414 java_files = java_sources_needing_jni | 416 java_files = java_sources_needing_jni |
415 deps = [ | 417 deps = [ |
416 "//base:base_java", | 418 "//base:base_java", |
417 "//components/location/android:location_java", | 419 "//components/location/android:location_java", |
418 ] | 420 ] |
419 } | 421 } |
420 } | 422 } |
OLD | NEW |