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

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

Issue 19040002: [Android] Convert more test targets to use isolate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add maruel/csharp as owners for isolate files 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 f903e52b610cff28cdcc05618acd18255ecfb577..3ad6df6593c6832a32de5cbb411486af52ac75f0 100644
--- a/build/android/pylib/gtest/test_package.py
+++ b/build/android/pylib/gtest/test_package.py
@@ -87,30 +87,6 @@ class TestPackage(object):
ret += [current + test_name]
return ret
- def PushDataAndPakFiles(self):
- external_storage = self.adb.GetExternalStorage()
- 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 in ('content_unittests',
- 'components_unittests'):
- self.adb.PushIfNeeded(
- self.test_suite_dirname + '/content_resources.pak',
- external_storage + '/paks/content_resources.pak')
- if self.test_suite_basename == 'breakpad_unittests':
- self.adb.PushIfNeeded(
- self.test_suite_dirname + '/linux_dumper_unittest_helper',
- constants.TEST_EXECUTABLE_DIR + '/linux_dumper_unittest_helper')
- if self.test_suite_basename == 'content_browsertests':
- self.adb.PushIfNeeded(
- self.test_suite_dirname +
- '/../content_shell/assets/content_shell.pak',
- external_storage + '/paks/content_shell.pak')
-
def _WatchTestOutput(self, p):
"""Watches the test output.
« 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