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