| 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 | 4 |
| 5 import("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") # For generate_jni(). | 8 import("//build/config/android/rules.gni") # For generate_jni(). |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 ] | 124 ] |
| 125 | 125 |
| 126 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 126 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
| 127 | 127 |
| 128 all_dependent_configs = [ ":bluetooth_config" ] | 128 all_dependent_configs = [ ":bluetooth_config" ] |
| 129 | 129 |
| 130 deps = [ | 130 deps = [ |
| 131 ":strings", | 131 ":strings", |
| 132 "uribeacon", | 132 "uribeacon", |
| 133 "//base", | 133 "//base", |
| 134 "//crypto", |
| 134 "//net", | 135 "//net", |
| 135 "//ui/base", | 136 "//ui/base", |
| 136 ] | 137 ] |
| 137 | 138 |
| 138 if (is_android) { | 139 if (is_android) { |
| 139 deps += [ ":jni_headers" ] | 140 deps += [ ":jni_headers" ] |
| 140 } | 141 } |
| 141 | 142 |
| 142 if (is_chromeos) { | 143 if (is_chromeos) { |
| 143 deps += [ | 144 deps += [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 jni_package = "bluetooth" | 263 jni_package = "bluetooth" |
| 263 } | 264 } |
| 264 | 265 |
| 265 android_library("java") { | 266 android_library("java") { |
| 266 java_files = java_sources_needing_jni | 267 java_files = java_sources_needing_jni |
| 267 deps = [ | 268 deps = [ |
| 268 "//base:base_java", | 269 "//base:base_java", |
| 269 ] | 270 ] |
| 270 } | 271 } |
| 271 } | 272 } |
| OLD | NEW |