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

Unified Diff: content/test/ct/run_ct_dm.py

Issue 1493913005: [CT+DM] Change location of SKPs dir to outside checkouts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 | « content/test/ct/OWNERS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/ct/run_ct_dm.py
diff --git a/content/test/ct/run_ct_dm.py b/content/test/ct/run_ct_dm.py
index 35cf3db4c6dc6aa2714a0b6adeffcee3f208379c..3b1e57e443a6e121bcd5a7b96e9b4e936c2bcf6f 100755
--- a/content/test/ct/run_ct_dm.py
+++ b/content/test/ct/run_ct_dm.py
@@ -13,8 +13,10 @@ import sys
PARENT_DIR = os.path.dirname(os.path.realpath(__file__))
-SKIA_SRC_DIR = os.path.normpath(os.path.join(
- PARENT_DIR, os.pardir, os.pardir, os.pardir, os.pardir, 'skia'))
+REPOS_BASE_DIR = os.path.normpath(os.path.join(
+ PARENT_DIR, os.pardir, os.pardir, os.pardir, os.pardir))
+
+SKIA_SRC_DIR = os.path.join(REPOS_BASE_DIR, 'skia')
def main():
@@ -24,7 +26,7 @@ def main():
args = parser.parse_args()
dm_path = os.path.join(SKIA_SRC_DIR, 'out', 'Debug', 'dm')
- skps_dir = os.path.join(PARENT_DIR, 'slave%d' % args.slave_num, 'skps')
+ skps_dir = os.path.join(REPOS_BASE_DIR, 'skps', 'slave%d' % args.slave_num)
resource_path = os.path.join(SKIA_SRC_DIR, 'resources')
# TODO(rmistry): Double check the below DM configuration with mtklein@. We
« no previous file with comments | « content/test/ct/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698