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

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

Issue 10356116: Add "libraries" directory to SDK (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | ppapi/generators/idl_c_header.py » ('j') | ppapi/generators/idl_c_header.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_sdk.py
===================================================================
--- native_client_sdk/src/build_tools/build_sdk.py (revision 136360)
+++ native_client_sdk/src/build_tools/build_sdk.py (working copy)
@@ -242,6 +242,8 @@
'irt.h': 'src/untrusted/irt/irt.h',
'irt_ppapi.h': 'src/untrusted/irt/irt_ppapi.h',
},
+ 'libs': {
+ },
}
@@ -615,6 +617,7 @@
buildbot_common.RemoveDir(pepperold)
if not skip_untar:
buildbot_common.RemoveDir(pepperdir)
+ buildbot_common.MakeDir(os.path.join(pepperdir, 'libraries'))
buildbot_common.MakeDir(os.path.join(pepperdir, 'toolchain'))
buildbot_common.MakeDir(os.path.join(pepperdir, 'tools'))
else:
@@ -633,6 +636,7 @@
if not skip_build:
BuildToolchains(pepperdir, platform, arch, pepper_ver, toolchains)
+ InstallHeaders(os.path.join(pepperdir, 'libraries'), pepper_ver, 'libs')
if not skip_build:
buildbot_common.BuildStep('Copy make OS helpers')
@@ -668,7 +672,7 @@
BuildUpdater()
# start local server sharing a manifest + the new bundle
- if not skip_test_updater:
+ if not skip_test_updater and not skip_tar:
buildbot_common.BuildStep('Move bundle to localserver dir')
buildbot_common.MakeDir(SERVER_DIR)
buildbot_common.Move(tarfile, SERVER_DIR)
« no previous file with comments | « no previous file | ppapi/generators/idl_c_header.py » ('j') | ppapi/generators/idl_c_header.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698