diff options
author | mikecase <mikecase@chromium.org> | 2015-06-02 17:57:26 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-03 00:57:52 +0000 |
commit | 56d80d7a4c1ff50bf21112486cc9b2308c7e7bf0 (patch) | |
tree | b19a067f455f69dcf4e05e7a15380637f6c29392 /sync | |
parent | 96194133f54c1b396995022d82b55d289b468ea5 (diff) | |
download | chromium_src-56d80d7a4c1ff50bf21112486cc9b2308c7e7bf0.zip chromium_src-56d80d7a4c1ff50bf21112486cc9b2308c7e7bf0.tar.gz chromium_src-56d80d7a4c1ff50bf21112486cc9b2308c7e7bf0.tar.bz2 |
[Android] Generate scripts at build time to run android tests.
Making changes so that at build time scripts will be generated that can be used to easily run tests.
BUG=490781
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1120883002
Cr-Commit-Position: refs/heads/master@{#332518}
Diffstat (limited to 'sync')
-rw-r--r-- | sync/BUILD.gn | 4 | ||||
-rw-r--r-- | sync/sync_tests.gypi | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/sync/BUILD.gn b/sync/BUILD.gn index 515f830..e262686 100644 --- a/sync/BUILD.gn +++ b/sync/BUILD.gn @@ -664,6 +664,10 @@ test("sync_unit_tests") { "//third_party/protobuf:protobuf_lite", ] + if (is_android) { + isolate_file = "sync_unit_tests.isolate" + } + if (is_chromeos) { # Required by get_session_name_unittest.cc on Chrome OS. deps += [ "//chromeos" ] diff --git a/sync/sync_tests.gypi b/sync/sync_tests.gypi index eba5872..2b52e61b 100644 --- a/sync/sync_tests.gypi +++ b/sync/sync_tests.gypi @@ -499,6 +499,7 @@ ], 'variables': { 'test_suite_name': 'sync_unit_tests', + 'isolate_file': 'sync_unit_tests.isolate', }, 'includes': [ '../build/apk_test.gypi' ], }, |