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

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

Issue 513313002: Fix most of the "gn check" errors in ui/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android GN build 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
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "//base", 218 "//base",
219 "//base:i18n", 219 "//base:i18n",
220 "//skia", 220 "//skia",
221 "//third_party/icu", 221 "//third_party/icu",
222 "//ui/base", 222 "//ui/base",
223 "//ui/compositor", 223 "//ui/compositor",
224 "//ui/compositor:test_support", 224 "//ui/compositor:test_support",
225 "//ui/events", 225 "//ui/events",
226 "//ui/gfx", 226 "//ui/gfx",
227 "//ui/gfx/geometry", 227 "//ui/gfx/geometry",
228 "//ui/gl",
228 ] 229 ]
229 230
230 if (use_x11) { 231 if (use_x11) {
231 deps += [ 232 deps += [
232 "//ui/gfx/x", 233 "//ui/gfx/x",
233 ] 234 ]
234 } 235 }
235 } 236 }
236 237
237 executable("bench") { 238 executable("bench") {
238 output_name = "aura_bench" 239 output_name = "aura_bench"
239 sources = [ 240 sources = [
240 "bench/bench_main.cc", 241 "bench/bench_main.cc",
241 ] 242 ]
242 243
243 deps = [ 244 deps = [
244 ":aura", 245 ":aura",
245 ":test_support", 246 ":test_support",
246 "//base", 247 "//base",
247 "//base:i18n", 248 "//base:i18n",
248 "//cc", 249 "//cc",
249 "//skia", 250 "//skia",
250 "//third_party/icu", 251 "//third_party/icu",
251 "//ui/base", 252 "//ui/base",
252 "//ui/compositor", 253 "//ui/compositor",
253 "//ui/compositor:test_support", 254 "//ui/compositor:test_support",
254 "//ui/events", 255 "//ui/events",
255 "//ui/gfx", 256 "//ui/gfx",
256 "//ui/gfx/geometry", 257 "//ui/gfx/geometry",
258 "//ui/gl",
257 ] 259 ]
258 260
259 if (use_x11) { 261 if (use_x11) {
260 deps += [ 262 deps += [
261 "//ui/gfx/x", 263 "//ui/gfx/x",
262 ] 264 ]
263 } 265 }
264 } 266 }
265 267
266 test("unittests") { 268 test("unittests") {
(...skipping 24 matching lines...) Expand all
291 "//ui/gfx/geometry", 293 "//ui/gfx/geometry",
292 "//ui/gl", 294 "//ui/gl",
293 ] 295 ]
294 296
295 if (is_linux) { 297 if (is_linux) {
296 deps += [ 298 deps += [
297 "//third_party/mesa", 299 "//third_party/mesa",
298 ] 300 ]
299 } 301 }
300 } 302 }
OLDNEW
« no previous file with comments | « ui/app_list/BUILD.gn ('k') | ui/base/BUILD.gn » ('j') | ui/base/ime/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698