| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "string_util_icu.cc", | 161 "string_util_icu.cc", |
| 162 "string_util_icu.h", | 162 "string_util_icu.h", |
| 163 ] | 163 ] |
| 164 | 164 |
| 165 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 165 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
| 166 | 166 |
| 167 all_dependent_configs = [ ":bluetooth_config" ] | 167 all_dependent_configs = [ ":bluetooth_config" ] |
| 168 | 168 |
| 169 deps = [ | 169 deps = [ |
| 170 "//base", | 170 "//base", |
| 171 "//components/device_event_log", |
| 171 "//crypto", | 172 "//crypto", |
| 172 "//device/bluetooth/strings", | 173 "//device/bluetooth/strings", |
| 173 "//device/bluetooth/uribeacon", | 174 "//device/bluetooth/uribeacon", |
| 174 "//ipc", | 175 "//ipc", |
| 175 "//net", | 176 "//net", |
| 176 "//ui/base", | 177 "//ui/base", |
| 177 ] | 178 ] |
| 178 | 179 |
| 179 if (is_android) { | 180 if (is_android) { |
| 180 deps += [ ":jni_headers" ] | 181 deps += [ ":jni_headers" ] |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 } | 413 } |
| 413 | 414 |
| 414 android_library("java") { | 415 android_library("java") { |
| 415 java_files = java_sources_needing_jni | 416 java_files = java_sources_needing_jni |
| 416 deps = [ | 417 deps = [ |
| 417 "//base:base_java", | 418 "//base:base_java", |
| 418 "//components/location/android:location_java", | 419 "//components/location/android:location_java", |
| 419 ] | 420 ] |
| 420 } | 421 } |
| 421 } | 422 } |
| OLD | NEW |