| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "bluetooth_task_manager_win.h", | 107 "bluetooth_task_manager_win.h", |
| 108 "bluetooth_uuid.cc", | 108 "bluetooth_uuid.cc", |
| 109 "bluetooth_uuid.h", | 109 "bluetooth_uuid.h", |
| 110 ] | 110 ] |
| 111 | 111 |
| 112 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 112 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
| 113 | 113 |
| 114 all_dependent_configs = [ ":bluetooth_config" ] | 114 all_dependent_configs = [ ":bluetooth_config" ] |
| 115 | 115 |
| 116 deps = [ | 116 deps = [ |
| 117 "strings", | |
| 118 "uribeacon", | |
| 119 "//base", | 117 "//base", |
| 120 "//crypto", | 118 "//crypto", |
| 121 "//net", | 119 "//net", |
| 122 "//ui/base", | 120 "//ui/base", |
| 121 "strings", |
| 122 "uribeacon", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 if (is_android) { | 125 if (is_android) { |
| 126 deps += [ ":jni_headers" ] | 126 deps += [ ":jni_headers" ] |
| 127 } | 127 } |
| 128 | 128 |
| 129 if (is_chromeos) { | 129 if (is_chromeos) { |
| 130 deps += [ "//chromeos" ] | 130 deps += [ "//chromeos" ] |
| 131 } | 131 } |
| 132 | 132 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 jni_package = "bluetooth" | 306 jni_package = "bluetooth" |
| 307 } | 307 } |
| 308 | 308 |
| 309 android_library("java") { | 309 android_library("java") { |
| 310 java_files = java_sources_needing_jni | 310 java_files = java_sources_needing_jni |
| 311 deps = [ | 311 deps = [ |
| 312 "//base:base_java", | 312 "//base:base_java", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| 315 } | 315 } |
| OLD | NEW |