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

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

Issue 1484643002: Make //device pass "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « device/BUILD.gn ('k') | device/devices_app/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//base", 117 "//base",
118 "//crypto", 118 "//crypto",
119 "//device/bluetooth/strings",
120 "//device/bluetooth/uribeacon",
121 "//ipc",
119 "//net", 122 "//net",
120 "//ui/base", 123 "//ui/base",
121 "strings",
122 "uribeacon",
123 ] 124 ]
124 125
125 if (is_android) { 126 if (is_android) {
126 deps += [ ":jni_headers" ] 127 deps += [ ":jni_headers" ]
127 } 128 }
128 129
129 if (is_chromeos) { 130 if (is_chromeos) {
130 deps += [ "//chromeos" ] 131 deps += [ "//chromeos" ]
131 } 132 }
132 133
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 jni_package = "bluetooth" 307 jni_package = "bluetooth"
307 } 308 }
308 309
309 android_library("java") { 310 android_library("java") {
310 java_files = java_sources_needing_jni 311 java_files = java_sources_needing_jni
311 deps = [ 312 deps = [
312 "//base:base_java", 313 "//base:base_java",
313 ] 314 ]
314 } 315 }
315 } 316 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/devices_app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698