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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 ] | 138 ] |
139 | 139 |
140 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 140 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
141 | 141 |
142 all_dependent_configs = [ ":bluetooth_config" ] | 142 all_dependent_configs = [ ":bluetooth_config" ] |
143 | 143 |
144 deps = [ | 144 deps = [ |
145 "//base", | 145 "//base", |
146 "//crypto", | 146 "//crypto", |
147 "//device/bluetooth/strings", | 147 "//device/bluetooth/strings", |
| 148 "//device/bluetooth/uribeacon", |
148 "//ipc", | 149 "//ipc", |
149 "//net", | 150 "//net", |
150 "//ui/base", | 151 "//ui/base", |
151 ] | 152 ] |
152 | 153 |
153 if (is_android) { | 154 if (is_android) { |
154 deps += [ ":jni_headers" ] | 155 deps += [ ":jni_headers" ] |
155 } | 156 } |
156 | 157 |
157 if (is_chromeos) { | 158 if (is_chromeos) { |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 jni_package = "bluetooth" | 386 jni_package = "bluetooth" |
386 } | 387 } |
387 | 388 |
388 android_library("java") { | 389 android_library("java") { |
389 java_files = java_sources_needing_jni | 390 java_files = java_sources_needing_jni |
390 deps = [ | 391 deps = [ |
391 "//base:base_java", | 392 "//base:base_java", |
392 ] | 393 ] |
393 } | 394 } |
394 } | 395 } |
OLD | NEW |