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

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

Issue 584683002: Improve GN header checker, make //ui pass. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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/accessibility/BUILD.gn ('k') | ui/base/BUILD.gn » ('j') | 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") 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "test/test_windows.h", 165 "test/test_windows.h",
166 "test/test_window_delegate.cc", 166 "test/test_window_delegate.cc",
167 "test/test_window_delegate.h", 167 "test/test_window_delegate.h",
168 "test/ui_controls_factory_aura.h", 168 "test/ui_controls_factory_aura.h",
169 "test/window_event_dispatcher_test_api.cc", 169 "test/window_event_dispatcher_test_api.cc",
170 "test/window_event_dispatcher_test_api.h", 170 "test/window_event_dispatcher_test_api.h",
171 "test/window_test_api.cc", 171 "test/window_test_api.cc",
172 "test/window_test_api.h", 172 "test/window_test_api.h",
173 ] 173 ]
174 174
175 public_deps = [
176 ":aura",
177 ]
175 deps = [ 178 deps = [
176 ":aura",
177 "//skia", 179 "//skia",
178 "//testing/gtest", 180 "//testing/gtest",
179 "//ui/base",
180 "//ui/base:test_support", 181 "//ui/base:test_support",
181 "//ui/compositor:test_support", 182 "//ui/compositor:test_support",
182 "//ui/events", 183 "//ui/events",
183 "//ui/events:events_base", 184 "//ui/events:events_base",
184 "//ui/events:test_support", 185 "//ui/events:test_support",
185 "//ui/gfx", 186 "//ui/gfx",
186 "//ui/gfx/geometry", 187 "//ui/gfx/geometry",
187 "//ui/wm", 188 "//ui/wm",
188 ] 189 ]
189 190
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 242
242 executable("bench") { 243 executable("bench") {
243 output_name = "aura_bench" 244 output_name = "aura_bench"
244 testonly = true 245 testonly = true
245 246
246 sources = [ 247 sources = [
247 "bench/bench_main.cc", 248 "bench/bench_main.cc",
248 ] 249 ]
249 250
250 deps = [ 251 deps = [
251 ":aura",
252 ":test_support", 252 ":test_support",
253 "//base", 253 "//base",
254 "//base:i18n", 254 "//base:i18n",
255 "//cc", 255 "//cc",
256 "//gpu/command_buffer/client:gles2_interface", 256 "//gpu/command_buffer/client:gles2_interface",
257 "//skia", 257 "//skia",
258 "//third_party/icu", 258 "//third_party/icu",
259 "//ui/base", 259 "//ui/base",
260 "//ui/compositor", 260 "//ui/compositor",
261 "//ui/compositor:test_support", 261 "//ui/compositor:test_support",
(...skipping 14 matching lines...) Expand all
276 output_name = "aura_unittests" 276 output_name = "aura_unittests"
277 sources = [ 277 sources = [
278 "gestures/gesture_recognizer_unittest.cc", 278 "gestures/gesture_recognizer_unittest.cc",
279 "test/run_all_unittests.cc", 279 "test/run_all_unittests.cc",
280 "window_event_dispatcher_unittest.cc", 280 "window_event_dispatcher_unittest.cc",
281 "window_targeter_unittest.cc", 281 "window_targeter_unittest.cc",
282 "window_unittest.cc", 282 "window_unittest.cc",
283 ] 283 ]
284 284
285 deps = [ 285 deps = [
286 ":aura",
287 ":test_support", 286 ":test_support",
288 "//base/allocator", 287 "//base/allocator",
289 "//base/test:test_support", 288 "//base/test:test_support",
290 "//skia", 289 "//skia",
291 "//testing/gtest", 290 "//testing/gtest",
292 "//ui/base",
293 "//ui/base:test_support", 291 "//ui/base:test_support",
294 "//ui/compositor",
295 "//ui/compositor:test_support", 292 "//ui/compositor:test_support",
296 "//ui/events", 293 "//ui/events:test_support",
297 "//ui/events:events_base",
298 "//ui/events:gesture_detection", 294 "//ui/events:gesture_detection",
299 "//ui/gfx", 295 "//ui/gfx",
300 "//ui/gfx/geometry", 296 "//ui/gfx/geometry",
301 "//ui/gl", 297 "//ui/gl",
302 ] 298 ]
303 299
304 if (is_linux) { 300 if (is_linux) {
305 deps += [ 301 deps += [
306 "//third_party/mesa", 302 "//third_party/mesa",
307 ] 303 ]
308 } 304 }
309 } 305 }
OLDNEW
« no previous file with comments | « ui/accessibility/BUILD.gn ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698