summaryrefslogtreecommitdiffstats
path: root/device/bluetooth
diff options
context:
space:
mode:
authormukai <mukai@chromium.org>2014-10-14 18:07:37 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-15 01:08:20 +0000
commita02213aec741cbb4e36868ca440300eb840ad73f (patch)
treea7659d21117876252457b894acfdc94edd51c818 /device/bluetooth
parent76ebe81c525cad2d1707a4e1569a11123478baeb (diff)
downloadchromium_src-a02213aec741cbb4e36868ca440300eb840ad73f.zip
chromium_src-a02213aec741cbb4e36868ca440300eb840ad73f.tar.gz
chromium_src-a02213aec741cbb4e36868ca440300eb840ad73f.tar.bz2
Fixes device/bluetooth / chromeos dependencies for GN.
There's a code path to include <dbus.h> from the user of device/bluetooth on ChromeOS, for some files in src/chromeos. Therefore, the dependency chain on //chromeos -> //dbus needs to be "public_deps" instead of "deps". BUG=None R=armansito@chromium.org TBR=oshima@chromium.org TEST=manually Review URL: https://codereview.chromium.org/643243003 Cr-Commit-Position: refs/heads/master@{#299609}
Diffstat (limited to 'device/bluetooth')
-rw-r--r--device/bluetooth/BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/device/bluetooth/BUILD.gn b/device/bluetooth/BUILD.gn
index 28f9478..772cc51 100644
--- a/device/bluetooth/BUILD.gn
+++ b/device/bluetooth/BUILD.gn
@@ -101,7 +101,7 @@ static_library("bluetooth") {
]
if (is_chromeos) {
- deps += [
+ public_deps = [
"//chromeos",
"//dbus",
]