| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 383 | 383 | 
| 384   generate_jni("jni_headers") { | 384   generate_jni("jni_headers") { | 
| 385     sources = java_sources_needing_jni | 385     sources = java_sources_needing_jni | 
| 386     jni_package = "bluetooth" | 386     jni_package = "bluetooth" | 
| 387   } | 387   } | 
| 388 | 388 | 
| 389   android_library("java") { | 389   android_library("java") { | 
| 390     java_files = java_sources_needing_jni | 390     java_files = java_sources_needing_jni | 
| 391     deps = [ | 391     deps = [ | 
| 392       "//base:base_java", | 392       "//base:base_java", | 
| 393       "//components/location/android:location_java", |  | 
| 394     ] | 393     ] | 
| 395   } | 394   } | 
| 396 } | 395 } | 
| OLD | NEW | 
|---|