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 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 | 22 |
23 source_set("mojo") { | 23 source_set("mojo") { |
24 sources = [ | 24 sources = [ |
25 "adapter.cc", | 25 "adapter.cc", |
26 "adapter.h", | 26 "adapter.h", |
27 "adapter_factory.cc", | 27 "adapter_factory.cc", |
28 "adapter_factory.h", | 28 "adapter_factory.h", |
29 "device.cc", | 29 "device.cc", |
30 "device.h", | 30 "device.h", |
| 31 "test/device_connection_helper.cc", |
| 32 "test/device_connection_helper.h", |
31 ] | 33 ] |
32 | 34 |
33 public_deps = [ | 35 public_deps = [ |
34 ":bluetooth", | 36 ":bluetooth", |
35 "//device/bluetooth/public/interfaces:experimental_interfaces", | 37 "//device/bluetooth/public/interfaces:experimental_interfaces", |
36 ] | 38 ] |
37 } | 39 } |
38 | 40 |
39 component("bluetooth") { | 41 component("bluetooth") { |
40 sources = [ | 42 sources = [ |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 } | 406 } |
405 | 407 |
406 android_library("java") { | 408 android_library("java") { |
407 java_files = java_sources_needing_jni | 409 java_files = java_sources_needing_jni |
408 deps = [ | 410 deps = [ |
409 "//base:base_java", | 411 "//base:base_java", |
410 "//components/location/android:location_java", | 412 "//components/location/android:location_java", |
411 ] | 413 ] |
412 } | 414 } |
413 } | 415 } |
OLD | NEW |