Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "compile_targets": [ | |
| 3 "all" | |
| 4 ], | |
| 5 "gtest_tests": [ | |
| 6 "accessibility_unittests", | |
| 7 { | |
| 8 "test": "base_unittests", | |
| 9 "swarming": { | |
| 10 "can_use_on_swarming_builders": true | |
|
Paweł Hajdan Jr.
2014/08/14 11:23:38
Are we using this on swarming for memory tools? If
cmumford
2014/08/14 18:32:15
Done.
| |
| 11 } | |
| 12 }, | |
| 13 "cacheinvalidation_unittests", | |
| 14 "cast_unittests", | |
| 15 "cc_unittests", | |
| 16 "components_unittests", | |
| 17 { | |
| 18 "test": "content_unittests", | |
| 19 "swarming": { | |
| 20 "can_use_on_swarming_builders": true | |
| 21 } | |
| 22 }, | |
| 23 "crypto_unittests", | |
| 24 "device_unittests", | |
| 25 "gcm_unit_tests", | |
| 26 "gfx_unittests", | |
| 27 "google_apis_unittests", | |
| 28 "gpu_unittests", | |
| 29 "ipc_tests", | |
| 30 "jingle_unittests", | |
| 31 "media_unittests", | |
| 32 { | |
| 33 "test": "net_unittests", | |
| 34 "swarming": { | |
| 35 "can_use_on_swarming_builders": true | |
| 36 } | |
| 37 }, | |
| 38 "ppapi_unittests", | |
| 39 "printing_unittests", | |
| 40 "remoting_unittests", | |
| 41 "sql_unittests", | |
| 42 "sync_unit_tests", | |
| 43 "ui_unittests", | |
| 44 { | |
| 45 "test": "unit_tests", | |
| 46 "swarming": { | |
| 47 "can_use_on_swarming_builders": true, | |
| 48 "shards": 2 | |
| 49 } | |
| 50 }, | |
| 51 "url_unittests", | |
| 52 { | |
| 53 "test": "sandbox_linux_unittests", | |
| 54 "platforms": ["linux"], | |
| 55 "args": ["--test-launcher-print-test-stdio=always"] | |
| 56 }, | |
| 57 { | |
| 58 "test": "display_unittests", | |
| 59 "platforms": ["linux"] | |
| 60 } | |
| 61 ], | |
| 62 | |
| 63 "gtest_tests_filter_exclusions": [ | |
|
Paweł Hajdan Jr.
2014/08/14 11:23:38
This shouldn't be duplicated. Can we leave it out
cmumford
2014/08/14 18:32:15
Done.
| |
| 64 ".*gyp[i]?", | |
| 65 "build/android/pylib", | |
| 66 "build/compiler_version.py", | |
| 67 "build/get_landmines.py", | |
| 68 "build/gyp_chromium", | |
| 69 "build/linux/sysroot_ld_path.sh", | |
| 70 "chrome/test/data/.*", | |
| 71 "content/test/data/.*", | |
| 72 "DEPS", | |
| 73 "testing/buildbot/.*", | |
| 74 "tools/clang/scripts/plugin_flags.sh", | |
| 75 "tools/clang/scripts/update.py", | |
| 76 "tools/clang/scripts/update.sh", | |
| 77 "tools/perf/.*", | |
| 78 "tools/telemetry/.*", | |
| 79 "tools/whitespace.txt" | |
| 80 ], | |
| 81 | |
| 82 "non_filter_builders": [ | |
| 83 ], | |
| 84 | |
| 85 "filter_tests_builders": [ | |
|
Paweł Hajdan Jr.
2014/08/14 11:23:38
Same here, looks like this is just not relevant to
cmumford
2014/08/14 18:32:15
Done.
| |
| 86 "linux_chromium_rel_swarming", | |
| 87 "win_chromium_rel", | |
| 88 "win_chromium_rel_swarming", | |
| 89 "win_chromium_x64_rel" | |
| 90 ] | |
| 91 } | |
| 92 | |
| OLD | NEW |