Index: build/android/pylib/constants.py |
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py |
index a7c90c719b9faa9e6b34cc7308dcb1bb0bd9ac61..f61f4f4c1f9a3f94cc5f59caa29d2a028e007432 100644 |
--- a/build/android/pylib/constants.py |
+++ b/build/android/pylib/constants.py |
@@ -50,3 +50,22 @@ SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots') |
ANDROID_SDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/sdk') |
ANDROID_NDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/ndk') |
+ |
+# Do not modify this list without infra-team approval. This list |
+# is used for developers to run tests locally and also by android |
+# trybots on commit-queue. |
+DEFAULT_UNIT_TEST_SUITES = [ |
frankf
2013/01/09 21:53:02
Please see the bug. I don't really consider these
Isaac (away)
2013/01/09 21:59:58
Yep, agree w/ you. I did this before you replied
|
+ 'base_unittests', |
+ 'cc_unittests', |
+ 'content_unittests', |
+ 'gpu_unittests', |
+ 'ipc_tests', |
+ 'media_unittests', |
+ 'net_unittests', |
+ 'sql_unittests', |
+ 'sync_unit_tests', |
+ 'ui_unittests', |
+ 'unit_tests', |
+ 'webkit_compositor_bindings_unittests', |
+ 'android_webview_unittests', |
+] |