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

Side by Side Diff: BUILD.gn

Issue 961473002: Create list of GN tests needed for the bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | google_apis/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "//ui/gfx:gfx_unittests", # TODO(GYP) 291 "//ui/gfx:gfx_unittests", # TODO(GYP)
292 ] 292 ]
293 } else if (is_win) { 293 } else if (is_win) {
294 deps += [ "//ui/metro_viewer" ] 294 deps += [ "//ui/metro_viewer" ]
295 deps -= [ 295 deps -= [
296 "//crypto:crypto_unittests", # TODO(GYP) 296 "//crypto:crypto_unittests", # TODO(GYP)
297 "//net:net_unittests", # TODO(GYP) 297 "//net:net_unittests", # TODO(GYP)
298 ] 298 ]
299 } 299 }
300 } 300 }
301
302 if (is_linux) {
303 # This group corresponds to the list of tests run on the waterfall for
304 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
305 # here to help track GYP -> GN conversion progress.
306 group("linux_default_tests") {
307 testonly = true
308 deps = [
309 # chromedriver_unittests TODO(GYP)
310 # components_browsertests TODO(GYP)
311 # device_unittests TODO(GYP)
312 # nacl_loader_unittests TODO(GYP)
313 # ppapi_unittests TODO(GYP)
314 # remoting_unittests TODO(GYP)
315
316 "//base:base_unittests", # PASSES (*) 2/25/2015
317 "//cc:cc_unittests", # PASSES 2/25/2015
318 "//chrome/test:browser_tests",
319 "//chrome/test:interactive_ui_tests",
320 "//chrome/test:sync_integration_tests", # TODO(GYP) multiple crashes.
321 "//chrome/test:unit_tests", # PASSES 2/25/2015
322 "//components:components_unittests", # TODO(GYP) multiple crashes.
323 "//content/test:content_browsertests",
324 "//content/test:content_unittests", # PASSES 2/25/2015
325 "//crypto:crypto_unittests", # PASSES 2/25/2015
326 "//dbus:dbus_unittests", # PASSES 2/25/2015
327 "//extensions:extensions_browsertests", # PASSES 2/25/2015
328 "//extensions:extensions_unittests", # PASSES 2/25/2015
329 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
330 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
331 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
332 "//gpu:gpu_unittests", # PASSES 2/25/2015
333 "//ipc:ipc_tests", # PASSES 2/25/2015
334 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
335 "//jingle:jingle_unittests", # PASSES 2/25/2015
336 "//media/cast:cast_unittests", # PASSES 2/25/2015
337 "//media:media_unittests", # TODO(GYP) MidiManagerTest fails.
338 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
339 "//net:net_unittests", # PASSES 2/25/2015
340 "//printing:printing_unittests", # PASSES 2/25/2015
341 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
342 "//skia:skia_unittests", # PASSES 2/25/2015
343 "//sql:sql_unittests", # PASSES 2/25/2015
344 "//sync:sync_unit_tests", # PASSES 2/25/2015
345 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2 /25/2015
346 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
347 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
348 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
349 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PA SSES 2/25/2015
350 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
351 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
352 "//ui/aura:aura_unittests", # PASSES 2/25/2015
353 "//ui/base:ui_base_unittests", # TODO(GYP) ResourceBundleTest.* fails.
354 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
355 "//ui/display:display_unittests", # PASSES 2/25/2015
356 "//ui/events:events_unittests", # PASSES 2/25/2015
357 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
358 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
359 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
360 "//ui/wm:wm_unittests", # PASSES 2/25/2015
361 "//url:url_unittests", # PASSES 2/25/2015
362
363 # Note:
364 # (*) Fails but failures match GYP build at time of testing.
365 ]
366 }
367 }
OLDNEW
« no previous file with comments | « no previous file | google_apis/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698