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

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

Issue 164323003: Update NaCl SDK build for new location of irt_ppapi.h header file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | 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 6424993b5c36cdcb5c68bc3234aff634e4376af8..d65842bd0befff38c002b221ea6e6ebb433d5222 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -275,32 +275,32 @@ def BuildStepUntarToolchains(pepperdir, toolchains):
# List of toolchain headers to install.
-# Source is relative to native_client tree, destination is relative
+# Source is relative to top of Chromium tree, destination is relative
# to the toolchain header directory.
NACL_HEADER_MAP = {
'newlib': [
- ('src/include/nacl/nacl_exception.h', 'nacl/'),
- ('src/include/nacl/nacl_minidump.h', 'nacl/'),
- ('src/untrusted/irt/irt.h', ''),
- ('src/untrusted/irt/irt_dev.h', ''),
- ('src/untrusted/irt/irt_ppapi.h', ''),
- ('src/untrusted/nacl/nacl_dyncode.h', 'nacl/'),
- ('src/untrusted/nacl/nacl_startup.h', 'nacl/'),
- ('src/untrusted/nacl/nacl_thread.h', 'nacl/'),
- ('src/untrusted/pthread/pthread.h', ''),
- ('src/untrusted/pthread/semaphore.h', ''),
- ('src/untrusted/valgrind/dynamic_annotations.h', 'nacl/'),
+ ('native_client/src/include/nacl/nacl_exception.h', 'nacl/'),
+ ('native_client/src/include/nacl/nacl_minidump.h', 'nacl/'),
+ ('native_client/src/untrusted/irt/irt.h', ''),
+ ('native_client/src/untrusted/irt/irt_dev.h', ''),
+ ('native_client/src/untrusted/nacl/nacl_dyncode.h', 'nacl/'),
+ ('native_client/src/untrusted/nacl/nacl_startup.h', 'nacl/'),
+ ('native_client/src/untrusted/nacl/nacl_thread.h', 'nacl/'),
+ ('native_client/src/untrusted/pthread/pthread.h', ''),
+ ('native_client/src/untrusted/pthread/semaphore.h', ''),
+ ('native_client/src/untrusted/valgrind/dynamic_annotations.h', 'nacl/'),
+ ('ppapi/nacl_irt/irt_ppapi.h', ''),
],
'glibc': [
- ('src/include/nacl/nacl_exception.h', 'nacl/'),
- ('src/include/nacl/nacl_minidump.h', 'nacl/'),
- ('src/untrusted/irt/irt.h', ''),
- ('src/untrusted/irt/irt_dev.h', ''),
- ('src/untrusted/irt/irt_ppapi.h', ''),
- ('src/untrusted/nacl/nacl_dyncode.h', 'nacl/'),
- ('src/untrusted/nacl/nacl_startup.h', 'nacl/'),
- ('src/untrusted/nacl/nacl_thread.h', 'nacl/'),
- ('src/untrusted/valgrind/dynamic_annotations.h', 'nacl/'),
+ ('native_client/src/include/nacl/nacl_exception.h', 'nacl/'),
+ ('native_client/src/include/nacl/nacl_minidump.h', 'nacl/'),
+ ('native_client/src/untrusted/irt/irt.h', ''),
+ ('native_client/src/untrusted/irt/irt_dev.h', ''),
+ ('native_client/src/untrusted/nacl/nacl_dyncode.h', 'nacl/'),
+ ('native_client/src/untrusted/nacl/nacl_startup.h', 'nacl/'),
+ ('native_client/src/untrusted/nacl/nacl_thread.h', 'nacl/'),
+ ('native_client/src/untrusted/valgrind/dynamic_annotations.h', 'nacl/'),
+ ('ppapi/nacl_irt/irt_ppapi.h', ''),
],
'host': []
}
@@ -355,7 +355,7 @@ def InstallNaClHeaders(tc_dst_inc, tc_name):
# ones
tc_name = 'newlib'
- InstallFiles(NACL_DIR, tc_dst_inc, NACL_HEADER_MAP[tc_name])
+ InstallFiles(SRC_DIR, tc_dst_inc, NACL_HEADER_MAP[tc_name])
def MakeNinjaRelPath(path):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698