| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "bluetooth_remote_gatt_characteristic_android.cc", | 119 "bluetooth_remote_gatt_characteristic_android.cc", |
| 120 "bluetooth_remote_gatt_characteristic_android.h", | 120 "bluetooth_remote_gatt_characteristic_android.h", |
| 121 "bluetooth_remote_gatt_characteristic_mac.h", | 121 "bluetooth_remote_gatt_characteristic_mac.h", |
| 122 "bluetooth_remote_gatt_characteristic_mac.mm", | 122 "bluetooth_remote_gatt_characteristic_mac.mm", |
| 123 "bluetooth_remote_gatt_characteristic_win.cc", | 123 "bluetooth_remote_gatt_characteristic_win.cc", |
| 124 "bluetooth_remote_gatt_characteristic_win.h", | 124 "bluetooth_remote_gatt_characteristic_win.h", |
| 125 "bluetooth_remote_gatt_descriptor.cc", | 125 "bluetooth_remote_gatt_descriptor.cc", |
| 126 "bluetooth_remote_gatt_descriptor.h", | 126 "bluetooth_remote_gatt_descriptor.h", |
| 127 "bluetooth_remote_gatt_descriptor_android.cc", | 127 "bluetooth_remote_gatt_descriptor_android.cc", |
| 128 "bluetooth_remote_gatt_descriptor_android.h", | 128 "bluetooth_remote_gatt_descriptor_android.h", |
| 129 "bluetooth_remote_gatt_descriptor_mac.h", |
| 130 "bluetooth_remote_gatt_descriptor_mac.mm", |
| 129 "bluetooth_remote_gatt_descriptor_win.cc", | 131 "bluetooth_remote_gatt_descriptor_win.cc", |
| 130 "bluetooth_remote_gatt_descriptor_win.h", | 132 "bluetooth_remote_gatt_descriptor_win.h", |
| 131 "bluetooth_remote_gatt_service.cc", | 133 "bluetooth_remote_gatt_service.cc", |
| 132 "bluetooth_remote_gatt_service.h", | 134 "bluetooth_remote_gatt_service.h", |
| 133 "bluetooth_remote_gatt_service_android.cc", | 135 "bluetooth_remote_gatt_service_android.cc", |
| 134 "bluetooth_remote_gatt_service_android.h", | 136 "bluetooth_remote_gatt_service_android.h", |
| 135 "bluetooth_remote_gatt_service_mac.h", | 137 "bluetooth_remote_gatt_service_mac.h", |
| 136 "bluetooth_remote_gatt_service_mac.mm", | 138 "bluetooth_remote_gatt_service_mac.mm", |
| 137 "bluetooth_remote_gatt_service_win.cc", | 139 "bluetooth_remote_gatt_service_win.cc", |
| 138 "bluetooth_remote_gatt_service_win.h", | 140 "bluetooth_remote_gatt_service_win.h", |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 } | 410 } |
| 409 | 411 |
| 410 android_library("java") { | 412 android_library("java") { |
| 411 java_files = java_sources_needing_jni | 413 java_files = java_sources_needing_jni |
| 412 deps = [ | 414 deps = [ |
| 413 "//base:base_java", | 415 "//base:base_java", |
| 414 "//components/location/android:location_java", | 416 "//components/location/android:location_java", |
| 415 ] | 417 ] |
| 416 } | 418 } |
| 417 } | 419 } |
| OLD | NEW |