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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "bluetooth_uuid.cc", | 110 "bluetooth_uuid.cc", |
111 "bluetooth_uuid.h", | 111 "bluetooth_uuid.h", |
112 ] | 112 ] |
113 | 113 |
114 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 114 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
115 | 115 |
116 all_dependent_configs = [ ":bluetooth_config" ] | 116 all_dependent_configs = [ ":bluetooth_config" ] |
117 | 117 |
118 deps = [ | 118 deps = [ |
119 "//base", | 119 "//base", |
| 120 "//components/device_event_log", |
120 "//crypto", | 121 "//crypto", |
121 "//device/bluetooth/strings", | 122 "//device/bluetooth/strings", |
122 "//device/bluetooth/uribeacon", | 123 "//device/bluetooth/uribeacon", |
123 "//ipc", | 124 "//ipc", |
124 "//net", | 125 "//net", |
125 "//ui/base", | 126 "//ui/base", |
126 ] | 127 ] |
127 | 128 |
128 if (is_android) { | 129 if (is_android) { |
129 deps += [ ":jni_headers" ] | 130 deps += [ ":jni_headers" ] |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 jni_package = "bluetooth" | 311 jni_package = "bluetooth" |
311 } | 312 } |
312 | 313 |
313 android_library("java") { | 314 android_library("java") { |
314 java_files = java_sources_needing_jni | 315 java_files = java_sources_needing_jni |
315 deps = [ | 316 deps = [ |
316 "//base:base_java", | 317 "//base:base_java", |
317 ] | 318 ] |
318 } | 319 } |
319 } | 320 } |
OLD | NEW |