Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1749)

Unified Diff: build/android/pylib/gtest/test_package.py

Issue 18233018: [Android] Use isolate remap instead of check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: webkit_unit_tests depend on third_party/hyphen/hyph_en_US.dic Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/gtest/dispatch.py ('k') | build/android/pylib/gtest/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/gtest/test_package.py
diff --git a/build/android/pylib/gtest/test_package.py b/build/android/pylib/gtest/test_package.py
index d5504a3ffbf67285384d1a84411a754b09ccb88d..f903e52b610cff28cdcc05618acd18255ecfb577 100644
--- a/build/android/pylib/gtest/test_package.py
+++ b/build/android/pylib/gtest/test_package.py
@@ -89,23 +89,13 @@ class TestPackage(object):
def PushDataAndPakFiles(self):
external_storage = self.adb.GetExternalStorage()
- if (self.test_suite_basename == 'ui_unittests' or
- self.test_suite_basename == 'unit_tests'):
+ if (self.test_suite_basename == 'ui_unittests'):
self.adb.PushIfNeeded(
self.test_suite_dirname + '/chrome.pak',
external_storage + '/paks/chrome.pak')
self.adb.PushIfNeeded(
self.test_suite_dirname + '/locales/en-US.pak',
external_storage + '/paks/en-US.pak')
- if self.test_suite_basename == 'unit_tests':
- self.adb.PushIfNeeded(
- self.test_suite_dirname + '/resources.pak',
- external_storage + '/paks/resources.pak')
- self.adb.PushIfNeeded(
- self.test_suite_dirname + '/chrome_100_percent.pak',
- external_storage + '/paks/chrome_100_percent.pak')
- self.adb.PushIfNeeded(self.test_suite_dirname + '/test_data',
- external_storage + '/test_data')
if self.test_suite_basename in ('content_unittests',
'components_unittests'):
self.adb.PushIfNeeded(
« no previous file with comments | « build/android/pylib/gtest/dispatch.py ('k') | build/android/pylib/gtest/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698