diff options
author | pvalenzuela <pvalenzuela@chromium.org> | 2015-02-17 19:26:24 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-18 03:27:07 +0000 |
commit | 372dc7df57c3042006aff536c2f4dbac1d8498aa (patch) | |
tree | 00459eaf5eeda3b7061c7daf1861a09178a49e9a /sync/sync_unit_tests.isolate | |
parent | 90d96f6b68d56c0cb9187858c9ddb258d8924cff (diff) | |
download | chromium_src-372dc7df57c3042006aff536c2f4dbac1d8498aa.zip chromium_src-372dc7df57c3042006aff536c2f4dbac1d8498aa.tar.gz chromium_src-372dc7df57c3042006aff536c2f4dbac1d8498aa.tar.bz2 |
Create an isolate file for sync_unit_tests
This isolate file for the sync_unit_tests Android APK defines a
dependency on the icudtl.dat file. This file is required for locale-
based tests such as EntryKernelTest.ToValue in
sync/syncable/entry_kernel_unittest.cc.
Adding this file to the Python test runner code allows the runner to
copy the file to the device before test runs.
BUG=457952
Review URL: https://codereview.chromium.org/908953003
Cr-Commit-Position: refs/heads/master@{#316760}
Diffstat (limited to 'sync/sync_unit_tests.isolate')
-rw-r--r-- | sync/sync_unit_tests.isolate | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sync/sync_unit_tests.isolate b/sync/sync_unit_tests.isolate new file mode 100644 index 0000000..a29fad0 --- /dev/null +++ b/sync/sync_unit_tests.isolate @@ -0,0 +1,17 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +{ + 'conditions': [ + ['OS=="android"', { + 'variables': { + 'files': [ + '<(PRODUCT_DIR)/locales/en-US.pak', + ], + }, + }], + ], + 'includes': [ + '../third_party/icu/icu.isolate', + ], +} |