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", | |
149 "//ipc", | 148 "//ipc", |
150 "//net", | 149 "//net", |
151 "//ui/base", | 150 "//ui/base", |
152 ] | 151 ] |
153 | 152 |
154 if (is_android) { | 153 if (is_android) { |
155 deps += [ ":jni_headers" ] | 154 deps += [ ":jni_headers" ] |
156 } | 155 } |
157 | 156 |
158 if (is_chromeos) { | 157 if (is_chromeos) { |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 jni_package = "bluetooth" | 385 jni_package = "bluetooth" |
387 } | 386 } |
388 | 387 |
389 android_library("java") { | 388 android_library("java") { |
390 java_files = java_sources_needing_jni | 389 java_files = java_sources_needing_jni |
391 deps = [ | 390 deps = [ |
392 "//base:base_java", | 391 "//base:base_java", |
393 ] | 392 ] |
394 } | 393 } |
395 } | 394 } |
OLD | NEW |