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

Unified Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 735163002: Use the new nacl_core_sdk mode for package_version within Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month 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 | « chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_sdk.py
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index ecf7d31c2665a79b3a5c402afd979386b0614c19..6a6e323ea7d3d79c80ff018a2afff463dc044d0d 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -146,7 +146,7 @@ def GetPNaClTranslatorLib(tcpath, arch):
def BuildStepDownloadToolchains(toolchains):
buildbot_common.BuildStep('Running package_version.py')
- args = [sys.executable, PKGVER, '--exclude', 'arm_trusted']
+ args = [sys.executable, PKGVER, '--mode', 'nacl_core_sdk']
if 'bionic' in toolchains:
build_platform = '%s_x86' % getos.GetPlatform()
args.extend(['--append', os.path.join(build_platform, 'nacl_arm_bionic')])
@@ -866,7 +866,7 @@ def BuildStepBuildNaClPorts(pepper_ver, pepperdir):
'zlib-1.2.3/README')
src_root = os.path.join(NACLPORTS_DIR, 'out', 'build')
output_license = os.path.join(out_dir, 'ports', 'LICENSE')
- GenerateNotice(src_root , output_license, extra_licenses)
+ GenerateNotice(src_root, output_license, extra_licenses)
readme = os.path.join(out_dir, 'ports', 'README')
oshelpers.Copy(['-v', os.path.join(SDK_SRC_DIR, 'README.naclports'), readme])
« no previous file with comments | « chrome/test/nacl_test_injection/buildbot_chrome_nacl_stage.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698