| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 } | 279 } |
| 280 } | 280 } |
| 281 | 281 |
| 282 static_library("mocks") { | 282 static_library("mocks") { |
| 283 testonly = true | 283 testonly = true |
| 284 sources = [ | 284 sources = [ |
| 285 "test/mock_bluetooth_adapter.cc", | 285 "test/mock_bluetooth_adapter.cc", |
| 286 "test/mock_bluetooth_adapter.h", | 286 "test/mock_bluetooth_adapter.h", |
| 287 "test/mock_bluetooth_advertisement.cc", | 287 "test/mock_bluetooth_advertisement.cc", |
| 288 "test/mock_bluetooth_advertisement.h", | 288 "test/mock_bluetooth_advertisement.h", |
| 289 "test/mock_bluetooth_central_manager_mac.h", | |
| 290 "test/mock_bluetooth_central_manager_mac.mm", | |
| 291 "test/mock_bluetooth_device.cc", | 289 "test/mock_bluetooth_device.cc", |
| 292 "test/mock_bluetooth_device.h", | 290 "test/mock_bluetooth_device.h", |
| 293 "test/mock_bluetooth_discovery_session.cc", | 291 "test/mock_bluetooth_discovery_session.cc", |
| 294 "test/mock_bluetooth_discovery_session.h", | 292 "test/mock_bluetooth_discovery_session.h", |
| 295 "test/mock_bluetooth_gatt_characteristic.cc", | 293 "test/mock_bluetooth_gatt_characteristic.cc", |
| 296 "test/mock_bluetooth_gatt_characteristic.h", | 294 "test/mock_bluetooth_gatt_characteristic.h", |
| 297 "test/mock_bluetooth_gatt_connection.cc", | 295 "test/mock_bluetooth_gatt_connection.cc", |
| 298 "test/mock_bluetooth_gatt_connection.h", | 296 "test/mock_bluetooth_gatt_connection.h", |
| 299 "test/mock_bluetooth_gatt_descriptor.cc", | 297 "test/mock_bluetooth_gatt_descriptor.cc", |
| 300 "test/mock_bluetooth_gatt_descriptor.h", | 298 "test/mock_bluetooth_gatt_descriptor.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 329 jni_package = "bluetooth" | 327 jni_package = "bluetooth" |
| 330 } | 328 } |
| 331 | 329 |
| 332 android_library("java") { | 330 android_library("java") { |
| 333 java_files = java_sources_needing_jni | 331 java_files = java_sources_needing_jni |
| 334 deps = [ | 332 deps = [ |
| 335 "//base:base_java", | 333 "//base:base_java", |
| 336 ] | 334 ] |
| 337 } | 335 } |
| 338 } | 336 } |
| OLD | NEW |