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

Unified Diff: scripts/slave/recipes/client.nacl.sdk.recipe_autogen.py

Issue 2336903003: Stop using chromium_builder_tests target in NaCl SDK build (Closed)
Patch Set: Created 4 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/recipes/client.nacl.sdk.recipe_autogen.py
diff --git a/scripts/slave/recipes/client.nacl.sdk.recipe_autogen.py b/scripts/slave/recipes/client.nacl.sdk.recipe_autogen.py
index 63b6539ad9e374f93fed1e47de1335e1bea8d7de..c989cd14f941357e44fa0d57ddfeea000e8fc29b 100644
--- a/scripts/slave/recipes/client.nacl.sdk.recipe_autogen.py
+++ b/scripts/slave/recipes/client.nacl.sdk.recipe_autogen.py
@@ -78,8 +78,7 @@ def linux_sdk_multi_steps(api):
api.chromium.cleanup_temp()
# compile.py step
- args = ['--target', 'Release', '--compiler=goma',
- 'chromium_builder_nacl_sdk']
+ args = ['--target', 'Release', '--compiler=goma', 'chrome']
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)
@@ -168,7 +167,7 @@ def mac_sdk_multi_steps(api):
# compile.py step
args = ['--target', 'Release', '--build-tool=ninja',
- '--compiler=goma-clang', '--', 'chromium_builder_nacl_sdk']
+ '--compiler=goma-clang', '--', 'chrome']
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)
@@ -255,8 +254,7 @@ def windows_sdk_multi_steps(api):
api.chromium.cleanup_temp()
# compile.py step
- args = ['--target', 'Release', '--compiler=goma',
- 'chromium_builder_nacl_sdk']
+ args = ['--target', 'Release', '--compiler=goma', 'chrome']
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)
@@ -318,8 +316,7 @@ def linux_sdk_multirel_steps(api):
api.chromium.cleanup_temp()
# compile.py step
- args = ['--target', 'Release', '--compiler=goma',
- 'chromium_builder_tests']
+ args = ['--target', 'Release', '--compiler=goma', 'chrome']
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)
@@ -383,8 +380,7 @@ def windows_sdk_multirel_steps(api):
api.chromium.cleanup_temp()
# compile.py step
- args = ['--target', 'Release', '--compiler=goma',
- 'chromium_builder_tests',]
+ args = ['--target', 'Release', '--compiler=goma', 'chrome',]
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)
@@ -448,7 +444,7 @@ def mac_sdk_multirel_steps(api):
# compile.py step
args = ['--target', 'Release', '--build-tool=ninja',
- '--compiler=goma-clang', '--', 'chromium_builder_tests']
+ '--compiler=goma-clang', '--', 'chrome']
api.python("compile",
api.path["build"].join("scripts", "slave", "compile.py"),
args=args)

Powered by Google App Engine
This is Rietveld 408576698