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

Unified Diff: client/deps/chrome_test/chrome_test.py

Issue 3020025: Fixed chrome autotests setup script to work with SERVER_SOURCE as well. (Closed) Base URL: ssh://gitrw.chromium.org/autotest.git
Patch Set: Created 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/chrome_test/chrome_test.py
diff --git a/client/deps/chrome_test/chrome_test.py b/client/deps/chrome_test/chrome_test.py
index a84662215fd5ea9cc086fdfcca0f1de9f9d07b28..b5e61df294a685344f77b6fcbcf1c6b694354991 100755
--- a/client/deps/chrome_test/chrome_test.py
+++ b/client/deps/chrome_test/chrome_test.py
@@ -11,7 +11,8 @@ version = 1
def setup(top_dir):
if 'CHROME_ORIGIN' not in os.environ.keys() or \
- os.environ['CHROME_ORIGIN'] != 'LOCAL_SOURCE':
+ (os.environ['CHROME_ORIGIN'] != 'LOCAL_SOURCE' and
+ os.environ['CHROME_ORIGIN'] != 'SERVER_SOURCE'):
logging.info('Skipping Chrome test resource setup for non-local builds')
return
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698