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

Unified Diff: build/android/run_tests.py

Issue 10693110: [android] Split top-level scripts and libraries from build/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright on __init__.py, removed #! on some pylib/ files. Created 8 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/valgrind_tools.py ('k') | build/android/run_tests_helper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/run_tests.py
diff --git a/build/android/run_tests.py b/build/android/run_tests.py
index ac7164444695f00eb37a83d9792ffd985bb212a6..dfa66acad16661b56e10816905df0e48b9f911b7 100755
--- a/build/android/run_tests.py
+++ b/build/android/run_tests.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+#
# Copyright (c) 2012 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.
@@ -56,15 +57,15 @@ import subprocess
import sys
import time
-import android_commands
-from base_test_sharder import BaseTestSharder
-import cmd_helper
-import debug_info
+from pylib import android_commands
+from pylib.base_test_sharder import BaseTestSharder
+from pylib import cmd_helper
+from pylib import debug_info
import emulator
-import run_tests_helper
-from single_test_runner import SingleTestRunner
-from test_package_executable import TestPackageExecutable
-from test_result import BaseTestResult, TestResults
+from pylib import run_tests_helper
+from pylib.single_test_runner import SingleTestRunner
+from pylib.test_package_executable import TestPackageExecutable
+from pylib.test_result import BaseTestResult, TestResults
_TEST_SUITES = ['base_unittests',
'content_unittests',
« no previous file with comments | « build/android/pylib/valgrind_tools.py ('k') | build/android/run_tests_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698