From 533c50428fee3a8b53a2339517e3c318aa7fafa1 Mon Sep 17 00:00:00 2001 From: brettw Date: Thu, 26 Feb 2015 09:49:16 -0800 Subject: [PATCH] Create list of GN tests needed for the bots. This target tracks progress on required test target progress. Review URL: https://codereview.chromium.org/961473002 Cr-Commit-Position: refs/heads/master@{#318254} --- BUILD.gn | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++ google_apis/BUILD.gn | 2 +- 2 files changed, 68 insertions(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index f0ba26da1668..cc4e52ac0781 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -298,3 +298,70 @@ group("gn_all") { ] } } + +if (is_linux) { + # This group corresponds to the list of tests run on the waterfall for + # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's + # here to help track GYP -> GN conversion progress. + group("linux_default_tests") { + testonly = true + deps = [ + # chromedriver_unittests TODO(GYP) + # components_browsertests TODO(GYP) + # device_unittests TODO(GYP) + # nacl_loader_unittests TODO(GYP) + # ppapi_unittests TODO(GYP) + # remoting_unittests TODO(GYP) + + "//base:base_unittests", # PASSES (*) 2/25/2015 + "//cc:cc_unittests", # PASSES 2/25/2015 + "//chrome/test:browser_tests", + "//chrome/test:interactive_ui_tests", + "//chrome/test:sync_integration_tests", # TODO(GYP) multiple crashes. + "//chrome/test:unit_tests", # PASSES 2/25/2015 + "//components:components_unittests", # TODO(GYP) multiple crashes. + "//content/test:content_browsertests", + "//content/test:content_unittests", # PASSES 2/25/2015 + "//crypto:crypto_unittests", # PASSES 2/25/2015 + "//dbus:dbus_unittests", # PASSES 2/25/2015 + "//extensions:extensions_browsertests", # PASSES 2/25/2015 + "//extensions:extensions_unittests", # PASSES 2/25/2015 + "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 + "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 + "//google_apis:google_apis_unittests", # PASSES 2/25/2015 + "//gpu:gpu_unittests", # PASSES 2/25/2015 + "//ipc:ipc_tests", # PASSES 2/25/2015 + "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015 + "//jingle:jingle_unittests", # PASSES 2/25/2015 + "//media/cast:cast_unittests", # PASSES 2/25/2015 + "//media:media_unittests", # TODO(GYP) MidiManagerTest fails. + "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015 + "//net:net_unittests", # PASSES 2/25/2015 + "//printing:printing_unittests", # PASSES 2/25/2015 + "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015 + "//skia:skia_unittests", # PASSES 2/25/2015 + "//sql:sql_unittests", # PASSES 2/25/2015 + "//sync:sync_unit_tests", # PASSES 2/25/2015 + "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2/25/2015 + "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015 + "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015 + "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015 + "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PASSES 2/25/2015 + "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015 + "//ui/app_list:app_list_unittests", # PASSES 2/25/2015 + "//ui/aura:aura_unittests", # PASSES 2/25/2015 + "//ui/base:ui_base_unittests", # TODO(GYP) ResourceBundleTest.* fails. + "//ui/compositor:compositor_unittests", # PASSES 2/25/2015 + "//ui/display:display_unittests", # PASSES 2/25/2015 + "//ui/events:events_unittests", # PASSES 2/25/2015 + "//ui/gfx:gfx_unittests", # PASSES 2/25/2015 + "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 + "//ui/views:views_unittests", # PASSES (*) 2/25/2015 + "//ui/wm:wm_unittests", # PASSES 2/25/2015 + "//url:url_unittests", # PASSES 2/25/2015 + + # Note: + # (*) Fails but failures match GYP build at time of testing. + ] + } +} diff --git a/google_apis/BUILD.gn b/google_apis/BUILD.gn index 1cdf686f3502..4ddd371b2c01 100644 --- a/google_apis/BUILD.gn +++ b/google_apis/BUILD.gn @@ -196,7 +196,7 @@ source_set("test_support") { } if (!is_win || link_chrome_on_windows) { - test("google_apis_unittest") { + test("google_apis_unittests") { sources = [ "gaia/gaia_auth_fetcher_unittest.cc", "gaia/gaia_auth_util_unittest.cc", -- 2.11.4.GIT