| Index: projects.py
|
| diff --git a/projects.py b/projects.py
|
| index 0e4f62ae13de530ca5d144f0ec49917ae3d2a92d..ed06c076ced9d79f691e9558a59e950c5342f6a3 100644
|
| --- a/projects.py
|
| +++ b/projects.py
|
| @@ -299,19 +299,6 @@ def _gen_chromium(user, root_dir, rietveld_obj, no_try):
|
| 'unit_tests',
|
| #'webkit_unit_tests',
|
| ]
|
| - # Use a smaller set of tests for *_aura, since there's a lot of overlap with
|
| - # the corresponding *_rel builders.
|
| - # Note: *_aura are Release builders even if their names convey otherwise.
|
| - linux_aura_tests = [
|
| - 'app_list_unittests',
|
| - 'aura_unittests',
|
| - 'browser_tests',
|
| - 'compositor_unittests',
|
| - 'content_browsertests',
|
| - 'content_unittests',
|
| - 'interactive_ui_tests',
|
| - 'unit_tests',
|
| - ]
|
| builders_and_tests = {
|
| # TODO(maruel): Figure out a way to run 'sizes' where people can
|
| # effectively update the perf expectation correctly. This requires a
|
| @@ -334,7 +321,6 @@ def _gen_chromium(user, root_dir, rietveld_obj, no_try):
|
| 'ui_unittests',
|
| ],
|
| 'ios_rel_device': ['compile'],
|
| - 'linux_aura': linux_aura_tests,
|
| 'linux_clang': ['compile'],
|
| 'linux_chromeos_clang': ['compile'],
|
| # Note: It is a Release builder even if its name convey otherwise.
|
| @@ -349,9 +335,12 @@ def _gen_chromium(user, root_dir, rietveld_obj, no_try):
|
| 'sandbox_linux_unittests',
|
| ],
|
| 'linux_rel': standard_tests + [
|
| + 'app_list_unittests',
|
| + 'aura_unittests',
|
| 'cc_unittests',
|
| 'chromedriver2_unittests',
|
| 'components_unittests',
|
| + 'compositor_unittests',
|
| 'nacl_integration',
|
| 'remoting_unittests',
|
| 'sandbox_linux_unittests',
|
|
|