diff options
author | jamesr <jamesr@chromium.org> | 2015-01-21 04:40:00 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-21 12:40:49 +0000 |
commit | 4359db72cde4fe4eeb4125d9a88af765fcdf39f1 (patch) | |
tree | 35ac4bdfde7715ef6b816666c4904d904544573f /ui/aura/BUILD.gn | |
parent | 6f4aa7e2069231cbe49995c87aab66c807de2926 (diff) | |
download | chromium_src-4359db72cde4fe4eeb4125d9a88af765fcdf39f1.zip chromium_src-4359db72cde4fe4eeb4125d9a88af765fcdf39f1.tar.gz chromium_src-4359db72cde4fe4eeb4125d9a88af765fcdf39f1.tar.bz2 |
GN: Add -Wl,-z defs on linux and fix errors
This tells the linker to resolve symbols for shared libraries at build
time, not run time. This alerts developers much earlier that their
dependencies are underspecified.
BUG=371125
Review URL: https://codereview.chromium.org/843583006
Cr-Commit-Position: refs/heads/master@{#312317}
Diffstat (limited to 'ui/aura/BUILD.gn')
-rw-r--r-- | ui/aura/BUILD.gn | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/aura/BUILD.gn b/ui/aura/BUILD.gn index 21b0b27..1357a63 100644 --- a/ui/aura/BUILD.gn +++ b/ui/aura/BUILD.gn @@ -110,7 +110,12 @@ component("aura") { "//build/config/linux:x11", "//build/config/linux:xrandr", ] - deps += [ "//ui/events/platform/x11" ] + deps += [ + "//ui/events:events_base", + "//ui/events/devices", + "//ui/events/platform/x11", + "//ui/gfx/x", + ] } else { sources -= [ "window_tree_host_x11.cc", |