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 26 matching lines...) Expand all Loading... |
37 "bluetooth_adapter_win.cc", | 37 "bluetooth_adapter_win.cc", |
38 "bluetooth_adapter_win.h", | 38 "bluetooth_adapter_win.h", |
39 "bluetooth_advertisement.cc", | 39 "bluetooth_advertisement.cc", |
40 "bluetooth_advertisement.h", | 40 "bluetooth_advertisement.h", |
41 "bluetooth_audio_sink.cc", | 41 "bluetooth_audio_sink.cc", |
42 "bluetooth_audio_sink.h", | 42 "bluetooth_audio_sink.h", |
43 "bluetooth_channel_mac.h", | 43 "bluetooth_channel_mac.h", |
44 "bluetooth_channel_mac.mm", | 44 "bluetooth_channel_mac.mm", |
45 "bluetooth_classic_device_mac.h", | 45 "bluetooth_classic_device_mac.h", |
46 "bluetooth_classic_device_mac.mm", | 46 "bluetooth_classic_device_mac.mm", |
| 47 "bluetooth_classic_win.cc", |
| 48 "bluetooth_classic_win.h", |
47 "bluetooth_device.cc", | 49 "bluetooth_device.cc", |
48 "bluetooth_device.h", | 50 "bluetooth_device.h", |
49 "bluetooth_device_android.cc", | 51 "bluetooth_device_android.cc", |
50 "bluetooth_device_android.h", | 52 "bluetooth_device_android.h", |
51 "bluetooth_device_mac.h", | 53 "bluetooth_device_mac.h", |
52 "bluetooth_device_mac.mm", | 54 "bluetooth_device_mac.mm", |
53 "bluetooth_device_win.cc", | 55 "bluetooth_device_win.cc", |
54 "bluetooth_device_win.h", | 56 "bluetooth_device_win.h", |
55 "bluetooth_discovery_filter.cc", | 57 "bluetooth_discovery_filter.cc", |
56 "bluetooth_discovery_filter.h", | 58 "bluetooth_discovery_filter.h", |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 jni_package = "bluetooth" | 323 jni_package = "bluetooth" |
322 } | 324 } |
323 | 325 |
324 android_library("java") { | 326 android_library("java") { |
325 java_files = java_sources_needing_jni | 327 java_files = java_sources_needing_jni |
326 deps = [ | 328 deps = [ |
327 "//base:base_java", | 329 "//base:base_java", |
328 ] | 330 ] |
329 } | 331 } |
330 } | 332 } |
OLD | NEW |