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

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

Issue 9309012: Put various nacl headers back under nacl/ where they have previously been (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: feedback Created 8 years, 11 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/buildbot_run.py
===================================================================
--- native_client_sdk/src/build_tools/buildbot_run.py (revision 119956)
+++ native_client_sdk/src/build_tools/buildbot_run.py (working copy)
@@ -179,21 +179,21 @@
'newlib': {
'pthread.h': 'src/untrusted/pthread/pthread.h',
'semaphore.h': 'src/untrusted/pthread/semaphore.h',
- 'dynamic_annotations.h': 'src/untrusted/valgrind/dynamic_annotations.h',
- 'dynamic_annotations.h': 'src/untrusted/valgrind/dynamic_annotations.h',
- 'nacl_dyncode.h': 'src/untrusted/nacl/nacl_dyncode.h',
- 'nacl_startup.h': 'src/untrusted/nacl/nacl_startup.h',
- 'nacl_thread.h': 'src/untrusted/nacl/nacl_thread.h',
+ 'nacl/dynamic_annotations.h':
+ 'src/untrusted/valgrind/dynamic_annotations.h',
+ 'nacl/nacl_dyncode.h': 'src/untrusted/nacl/nacl_dyncode.h',
+ 'nacl/nacl_startup.h': 'src/untrusted/nacl/nacl_startup.h',
+ 'nacl/nacl_thread.h': 'src/untrusted/nacl/nacl_thread.h',
'pnacl.h': 'src/untrusted/nacl/pnacl.h',
'irt.h': 'src/untrusted/irt/irt.h',
'irt_ppapi.h': 'src/untrusted/irt/irt_ppapi.h',
},
'glibc': {
- 'dynamic_annotations.h': 'src/untrusted/valgrind/dynamic_annotations.h',
- 'dynamic_annotations.h': 'src/untrusted/valgrind/dynamic_annotations.h',
- 'nacl_dyncode.h': 'src/untrusted/nacl/nacl_dyncode.h',
- 'nacl_startup.h': 'src/untrusted/nacl/nacl_startup.h',
- 'nacl_thread.h': 'src/untrusted/nacl/nacl_thread.h',
+ 'nacl/dynamic_annotations.h':
+ 'src/untrusted/valgrind/dynamic_annotations.h',
+ 'nacl/nacl_dyncode.h': 'src/untrusted/nacl/nacl_dyncode.h',
+ 'nacl/nacl_startup.h': 'src/untrusted/nacl/nacl_startup.h',
+ 'nacl/nacl_thread.h': 'src/untrusted/nacl/nacl_thread.h',
'pnacl.h': 'src/untrusted/nacl/pnacl.h',
'irt.h': 'src/untrusted/irt/irt.h',
'irt_ppapi.h': 'src/untrusted/irt/irt_ppapi.h',
@@ -207,6 +207,7 @@
for filename in tc_map:
src = os.path.join(NACL_DIR, tc_map[filename])
dst = os.path.join(tc_dst_inc, filename)
+ MakeDir(os.path.dirname(dst))
oshelpers.Copy(['-v', src, dst])
# Clean out per toolchain ppapi directory
« 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