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

Side by Side Diff: ui/wm/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: rebase 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
« no previous file with comments | « ui/keyboard/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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")
6
5 component("wm") { 7 component("wm") {
6 sources = [ 8 sources = [
7 "core/accelerator_delegate.h", 9 "core/accelerator_delegate.h",
8 "core/accelerator_filter.cc", 10 "core/accelerator_filter.cc",
9 "core/accelerator_filter.h", 11 "core/accelerator_filter.h",
10 "core/base_focus_rules.cc", 12 "core/base_focus_rules.cc",
11 "core/base_focus_rules.h", 13 "core/base_focus_rules.h",
12 "core/capture_controller.cc", 14 "core/capture_controller.cc",
13 "core/capture_controller.h", 15 "core/capture_controller.h",
14 "core/compound_event_filter.cc", 16 "core/compound_event_filter.cc",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "//ui/compositor", 81 "//ui/compositor",
80 "//ui/events", 82 "//ui/events",
81 "//ui/events/devices", 83 "//ui/events/devices",
82 "//ui/events/platform", 84 "//ui/events/platform",
83 "//ui/events:events_base", 85 "//ui/events:events_base",
84 "//ui/events/platform", 86 "//ui/events/platform",
85 "//ui/gfx", 87 "//ui/gfx",
86 "//ui/gfx/geometry", 88 "//ui/gfx/geometry",
87 "//ui/resources", 89 "//ui/resources",
88 ] 90 ]
91
92 if (use_x11) {
93 configs += [ "//build/config/linux:x11" ]
94 }
89 } 95 }
90 96
91 static_library("test_support") { 97 static_library("test_support") {
92 testonly = true 98 testonly = true
93 sources = [ 99 sources = [
94 "test/wm_test_helper.cc", 100 "test/wm_test_helper.cc",
95 "test/wm_test_helper.h", 101 "test/wm_test_helper.h",
96 ] 102 ]
97 103
98 deps = [ 104 deps = [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 "//ui/aura:test_support", 139 "//ui/aura:test_support",
134 "//ui/base:test_support", 140 "//ui/base:test_support",
135 "//ui/compositor:test_support", 141 "//ui/compositor:test_support",
136 "//ui/events:test_support", 142 "//ui/events:test_support",
137 "//ui/events/platform", 143 "//ui/events/platform",
138 "//ui/gfx", 144 "//ui/gfx",
139 "//ui/gfx/geometry", 145 "//ui/gfx/geometry",
140 "//ui/gl", 146 "//ui/gl",
141 ] 147 ]
142 } 148 }
OLDNEW
« no previous file with comments | « ui/keyboard/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698