diff options
author | mukai <mukai@chromium.org> | 2014-10-29 15:45:37 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-29 22:45:58 +0000 |
commit | 37b3450122b4957c84b341e4cfd470b747107b8d (patch) | |
tree | 2be46c80f38b99ea24cd06bc1ec7634e375f8e5c /device/battery | |
parent | 584af40a101ba22ef6d67506eb7775f34a90fc52 (diff) | |
download | chromium_src-37b3450122b4957c84b341e4cfd470b747107b8d.zip chromium_src-37b3450122b4957c84b341e4cfd470b747107b8d.tar.gz chromium_src-37b3450122b4957c84b341e4cfd470b747107b8d.tar.bz2 |
Fixes the device/battery GN buildfile for ChromeOS.
is_linux contains chromeos, but chromeos already excludes
_default and _linux files above. This condition seems to
address the desktop linux instead.
BUG=428420
TEST=manually
R=timvolodine@chromium.org
Review URL: https://codereview.chromium.org/686773004
Cr-Commit-Position: refs/heads/master@{#301954}
Diffstat (limited to 'device/battery')
-rw-r--r-- | device/battery/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/battery/BUILD.gn b/device/battery/BUILD.gn index 498643c..4921e9d 100644 --- a/device/battery/BUILD.gn +++ b/device/battery/BUILD.gn @@ -64,7 +64,7 @@ component("battery") { ] } - if (is_linux) { + if (is_desktop_linux) { if (use_dbus) { configs += [ "//build/config/linux:dbus", |