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/keyboard | |
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/keyboard')
-rw-r--r-- | ui/keyboard/BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/keyboard/BUILD.gn b/ui/keyboard/BUILD.gn index 21d2417..b401972 100644 --- a/ui/keyboard/BUILD.gn +++ b/ui/keyboard/BUILD.gn @@ -41,11 +41,11 @@ component("keyboard") { "//content/public/browser", "//content/public/common", "//mojo/environment:chromium", + "//skia", "//third_party/mojo/src/mojo/edk/js", "//third_party/mojo/src/mojo/edk/system", "//third_party/mojo/src/mojo/public/cpp/bindings", "//third_party/mojo/src/mojo/public/cpp/system", - "//url", "//ui/aura", "//ui/base", "//ui/compositor", @@ -54,6 +54,7 @@ component("keyboard") { "//ui/gfx", "//ui/gfx/geometry", "//ui/wm", + "//url", ] } |