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

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

Issue 1961473003: [Mac/GN] Set up the component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment and rebase Created 4 years, 7 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
« no previous file with comments | « device/battery/BUILD.gn ('k') | gin/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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 if (is_android) { 154 if (is_android) {
155 deps += [ ":jni_headers" ] 155 deps += [ ":jni_headers" ]
156 } 156 }
157 157
158 if (is_chromeos) { 158 if (is_chromeos) {
159 deps += [ "//chromeos" ] 159 deps += [ "//chromeos" ]
160 } 160 }
161 161
162 if (is_mac) { 162 if (is_mac) {
163 libs = [ "IOBluetooth.framework" ] 163 libs = [
164 "IOBluetooth.framework",
165 "Foundation.framework",
166 ]
164 } 167 }
165 168
166 if (is_win) { 169 if (is_win) {
167 libs = [ 170 libs = [
168 # Bthprops must be listed before BluetoothApis or else delay loading 171 # Bthprops must be listed before BluetoothApis or else delay loading
169 # crashes. 172 # crashes.
170 "Bthprops.lib", 173 "Bthprops.lib",
171 "BluetoothApis.lib", 174 "BluetoothApis.lib",
172 "setupapi.lib", 175 "setupapi.lib",
173 ] 176 ]
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 jni_package = "bluetooth" 383 jni_package = "bluetooth"
381 } 384 }
382 385
383 android_library("java") { 386 android_library("java") {
384 java_files = java_sources_needing_jni 387 java_files = java_sources_needing_jni
385 deps = [ 388 deps = [
386 "//base:base_java", 389 "//base:base_java",
387 ] 390 ]
388 } 391 }
389 } 392 }
OLDNEW
« no previous file with comments | « device/battery/BUILD.gn ('k') | gin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698