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

Unified Diff: chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py

Issue 261773002: Chromium NaCl scripts now uses package_version to extract. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nacl_revision 13106->13115 Created 6 years, 8 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: chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py
diff --git a/chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py b/chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py
index b31c9f689e9607e5a73d0fa755314008fdbb4f30..ca198f4a19fdd5d9b916157d733f466aa8e6dd91 100755
--- a/chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py
+++ b/chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py
@@ -225,9 +225,12 @@ def BuildAndTest(options):
options.json_build_results_output_file)
# Download the toolchain(s).
- RunCommand([python,
- os.path.join(nacl_dir, 'build', 'download_toolchains.py'),
- '--keep', '--no-arm-trusted', '--no-pnacl', 'TOOL_REVISIONS'],
+ pkg_ver_dir = os.path.join(nacl_dir, 'build', 'package_version')
+ RunCommand([python, os.path.join(pkg_ver_dir, 'package_version.py'),
+ '--exclude', 'arm_trusted',
+ '--exclude', 'pnacl_newlib',
+ '--exclude', 'nacl_arm_newlib',
+ 'sync', '--extract'],
nacl_dir, os.environ)
CleanTempDir()

Powered by Google App Engine
This is Rietveld 408576698