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

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

Issue 643243003: Fixes device/bluetooth / chromeos dependencies for GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: public_deps Created 6 years, 2 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 | « chromeos/BUILD.gn ('k') | no next file » | 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 4
5 import("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 config("bluetooth_config") { 7 config("bluetooth_config") {
8 if (is_win) { 8 if (is_win) {
9 ldflags = [ 9 ldflags = [
10 # Despite MSDN stating that Bthprops.dll contains the 10 # Despite MSDN stating that Bthprops.dll contains the
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 all_dependent_configs = [ ":bluetooth_config" ] 94 all_dependent_configs = [ ":bluetooth_config" ]
95 95
96 deps = [ 96 deps = [
97 ":strings", 97 ":strings",
98 "//base", 98 "//base",
99 "//net", 99 "//net",
100 "//ui/base", 100 "//ui/base",
101 ] 101 ]
102 102
103 if (is_chromeos) { 103 if (is_chromeos) {
104 deps += [ 104 public_deps = [ "//chromeos" ]
Ilya Sherman 2014/10/13 22:00:23 //device/bluetooth still has a direct dependency o
Jun Mukai 2014/10/13 22:17:09 You're right. It was added implicitly through //c
105 "//chromeos",
106 "//dbus",
107 ]
108 } 105 }
109 106
110 if (is_mac) { 107 if (is_mac) {
111 libs = [ "IOBluetooth.framework" ] 108 libs = [ "IOBluetooth.framework" ]
112 } 109 }
113 } 110 }
114 111
115 grit("strings") { 112 grit("strings") {
116 source = "bluetooth_strings.grd" 113 source = "bluetooth_strings.grd"
117 outputs = [ 114 outputs = [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 "test/mock_bluetooth_gatt_service.h", 191 "test/mock_bluetooth_gatt_service.h",
195 "test/mock_bluetooth_socket.cc", 192 "test/mock_bluetooth_socket.cc",
196 "test/mock_bluetooth_socket.h", 193 "test/mock_bluetooth_socket.h",
197 ] 194 ]
198 195
199 deps = [ 196 deps = [
200 ":bluetooth", 197 ":bluetooth",
201 "//testing/gmock", 198 "//testing/gmock",
202 ] 199 ]
203 } 200 }
OLDNEW
« no previous file with comments | « chromeos/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698