Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: ui/aura/BUILD.gn

Issue 843583006: GN: Add -Wl,-z defs on linux and fix errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 component("aura") { 7 component("aura") {
8 sources = [ 8 sources = [
9 "client/aura_constants.cc", 9 "client/aura_constants.cc",
10 "client/aura_constants.h", 10 "client/aura_constants.h",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "//ui/events/platform", 103 "//ui/events/platform",
104 "//ui/gfx", 104 "//ui/gfx",
105 "//ui/gfx/geometry", 105 "//ui/gfx/geometry",
106 ] 106 ]
107 107
108 if (use_x11) { 108 if (use_x11) {
109 configs += [ 109 configs += [
110 "//build/config/linux:x11", 110 "//build/config/linux:x11",
111 "//build/config/linux:xrandr", 111 "//build/config/linux:xrandr",
112 ] 112 ]
113 deps += [ "//ui/events/platform/x11" ] 113 deps += [
114 "//ui/events:events_base",
115 "//ui/events/devices",
Nico 2015/01/15 23:35:07 Are both of these only needed if use_x11? (not sur
jamesr 2015/01/16 02:00:45 The references are in window_tree_host_x11.cc so I
116 "//ui/events/platform/x11",
117 "//ui/gfx/x",
118 ]
114 } else { 119 } else {
115 sources -= [ 120 sources -= [
116 "window_tree_host_x11.cc", 121 "window_tree_host_x11.cc",
117 "window_tree_host_x11.h", 122 "window_tree_host_x11.h",
118 ] 123 ]
119 } 124 }
120 125
121 if (is_win) { 126 if (is_win) {
122 sources -= [ "input_state_lookup.cc" ] 127 sources -= [ "input_state_lookup.cc" ]
123 128
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 "//ui/events:gesture_detection", 287 "//ui/events:gesture_detection",
283 "//ui/gfx", 288 "//ui/gfx",
284 "//ui/gfx/geometry", 289 "//ui/gfx/geometry",
285 "//ui/gl", 290 "//ui/gl",
286 ] 291 ]
287 292
288 if (is_linux) { 293 if (is_linux) {
289 deps += [ "//third_party/mesa" ] 294 deps += [ "//third_party/mesa" ]
290 } 295 }
291 } 296 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698