diff options
author | spang <spang@chromium.org> | 2014-12-15 21:34:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-16 05:35:02 +0000 |
commit | f5ae0b9df07cafc53e5b42863b2c7d8ccf3aea77 (patch) | |
tree | 48cadc7f79ea7c813a146873181889fa35eb3ebb /ui | |
parent | 22b318e4e49094447ebd444e304373b04dcb52e7 (diff) | |
download | chromium_src-f5ae0b9df07cafc53e5b42863b2c7d8ccf3aea77.zip chromium_src-f5ae0b9df07cafc53e5b42863b2c7d8ccf3aea77.tar.gz chromium_src-f5ae0b9df07cafc53e5b42863b2c7d8ccf3aea77.tar.bz2 |
ozone: Fix precise build by disabling xkbcommon by default
This won't affect ChromeOS device builds because they enable xkbcommon
explicitly. It does however mean we are not compiling this code on the
chromium waterfall.
BUG=442563
TEST=build
TBR=kpschoedel, thakis
Review URL: https://codereview.chromium.org/807073002
Cr-Commit-Position: refs/heads/master@{#308532}
Diffstat (limited to 'ui')
-rw-r--r-- | ui/events/ozone/BUILD.gn | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/events/ozone/BUILD.gn b/ui/events/ozone/BUILD.gn index 08df6fe..c99fa5e 100644 --- a/ui/events/ozone/BUILD.gn +++ b/ui/events/ozone/BUILD.gn @@ -6,8 +6,10 @@ import("//build/config/features.gni") import("//build/config/linux/pkg_config.gni") import("//build/config/ui.gni") -# Optional system libraries. -use_xkbcommon = use_ozone +declare_args() { + # Optional system libraries. + use_xkbcommon = false +} if (use_xkbcommon) { pkg_config("xkbcommon") { |