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

Unified Diff: scripts/slave/recipe_modules/git/example.expected/platform_win.json

Issue 24650004: Fix hack for test presentation in path api. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 7 years, 3 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
Index: scripts/slave/recipe_modules/git/example.expected/platform_win.json
diff --git a/scripts/slave/recipe_modules/git/example.expected/platform_win.json b/scripts/slave/recipe_modules/git/example.expected/platform_win.json
index b600c7e904117621f928f66b9c5d9bdb446409c4..58d74bca2e182ec71052548e0947ddb8ef2763e0 100644
--- a/scripts/slave/recipe_modules/git/example.expected/platform_win.json
+++ b/scripts/slave/recipe_modules/git/example.expected/platform_win.json
@@ -3,13 +3,13 @@
"cmd": [
"python",
"-u",
- "[BUILD_ROOT]\\scripts\\slave\\git_setup.py",
+ "[BUILD]\\scripts\\slave\\git_setup.py",
"--path",
- "[SLAVE_BUILD_ROOT]\\src",
+ "[SLAVE_BUILD]\\src",
"--url",
"https://chromium.googlesource.com/chromium/src.git",
"--git_cmd_path",
- "[DEPOT_TOOLS_ROOT]\\git.bat"
+ "[DEPOT_TOOLS]\\git.bat"
],
"name": "git setup",
"seed_steps": [
@@ -23,62 +23,62 @@
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"fetch",
"origin",
"--recurse-submodules"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git fetch"
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"update-ref",
"refs/heads/master",
"origin/master"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git update-ref"
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"clean",
"-f",
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git clean"
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"checkout",
"-f",
"master"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git checkout"
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"submodule",
"update",
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git submodule"
},
{
"cmd": [
- "[DEPOT_TOOLS_ROOT]\\git.bat",
+ "[DEPOT_TOOLS]\\git.bat",
"status"
],
- "cwd": "[SLAVE_BUILD_ROOT]\\src",
+ "cwd": "[SLAVE_BUILD]\\src",
"name": "git status"
}
]

Powered by Google App Engine
This is Rietveld 408576698