Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: device/bluetooth/BUILD.gn

Issue 2059543002: bluetooth: Move FactoryWrapper to device and expose a function for testing in chooser controller (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Fix typo Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 14 matching lines...) Expand all
25 "android/bluetooth_jni_registrar.cc", 25 "android/bluetooth_jni_registrar.cc",
26 "android/bluetooth_jni_registrar.h", 26 "android/bluetooth_jni_registrar.h",
27 "android/wrappers.cc", 27 "android/wrappers.cc",
28 "android/wrappers.h", 28 "android/wrappers.h",
29 "bluetooth_adapter.cc", 29 "bluetooth_adapter.cc",
30 "bluetooth_adapter.h", 30 "bluetooth_adapter.h",
31 "bluetooth_adapter_android.cc", 31 "bluetooth_adapter_android.cc",
32 "bluetooth_adapter_android.h", 32 "bluetooth_adapter_android.h",
33 "bluetooth_adapter_factory.cc", 33 "bluetooth_adapter_factory.cc",
34 "bluetooth_adapter_factory.h", 34 "bluetooth_adapter_factory.h",
35 "bluetooth_adapter_factory_wrapper.cc",
36 "bluetooth_adapter_factory_wrapper.h",
35 "bluetooth_adapter_mac.h", 37 "bluetooth_adapter_mac.h",
36 "bluetooth_adapter_mac.mm", 38 "bluetooth_adapter_mac.mm",
37 "bluetooth_adapter_win.cc", 39 "bluetooth_adapter_win.cc",
38 "bluetooth_adapter_win.h", 40 "bluetooth_adapter_win.h",
39 "bluetooth_advertisement.cc", 41 "bluetooth_advertisement.cc",
40 "bluetooth_advertisement.h", 42 "bluetooth_advertisement.h",
41 "bluetooth_audio_sink.cc", 43 "bluetooth_audio_sink.cc",
42 "bluetooth_audio_sink.h", 44 "bluetooth_audio_sink.h",
43 "bluetooth_channel_mac.h", 45 "bluetooth_channel_mac.h",
44 "bluetooth_channel_mac.mm", 46 "bluetooth_channel_mac.mm",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 jni_package = "bluetooth" 388 jni_package = "bluetooth"
387 } 389 }
388 390
389 android_library("java") { 391 android_library("java") {
390 java_files = java_sources_needing_jni 392 java_files = java_sources_needing_jni
391 deps = [ 393 deps = [
392 "//base:base_java", 394 "//base:base_java",
393 ] 395 ]
394 } 396 }
395 } 397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698