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

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

Issue 16140015: [NaCl SDK] Include Ragel ncval in SDK for all validation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
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 c5c04536f6e3285d4dbebee6dd995c4a30393588..d856b04f99798aedd42793e4f9c7605f1e0ef2c1 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -445,8 +445,7 @@ def GypNinjaInstall(pepperdir, platform, toolchains):
ninja_out_dir = os.path.join(OUT_DIR, build_dir, 'Release')
tools_files = [
['sel_ldr', 'sel_ldr_x86_32'],
- ['ncval_x86_32', 'ncval_x86_32'],
- ['ncval_arm', 'ncval_arm'],
+ ['ncval_new', 'ncval'],
['irt_core_newlib_x32.nexe', 'irt_core_x86_32.nexe'],
['irt_core_newlib_x64.nexe', 'irt_core_x86_64.nexe'],
]
@@ -459,7 +458,6 @@ def GypNinjaInstall(pepperdir, platform, toolchains):
if platform != 'mac':
# Mac doesn't build 64-bit binaries.
tools_files.append(['sel_ldr64', 'sel_ldr_x86_64'])
- tools_files.append(['ncval_x86_64', 'ncval_x86_64'])
if platform == 'linux':
tools_files.append(['nacl_helper_bootstrap',
@@ -513,22 +511,18 @@ def GypNinjaBuild_NaCl(platform, rel_out_dir):
out_dir_arm = MakeNinjaRelPath(rel_out_dir + '-arm')
GypNinjaBuild('ia32', gyp_py, nacl_core_sdk_gyp, 'nacl_core_sdk', out_dir)
GypNinjaBuild('arm', gyp_py, nacl_core_sdk_gyp, 'nacl_core_sdk', out_dir_arm)
- GypNinjaBuild('ia32', gyp_py, all_gyp, 'ncval_x86_32', out_dir)
- GypNinjaBuild(None, gyp_py, all_gyp, 'ncval_arm', out_dir)
+ GypNinjaBuild('ia32', gyp_py, all_gyp, 'ncval_new', out_dir)
noelallen1 2013/06/03 18:28:13 What are we doing for PNaCl?
binji 2013/06/03 18:32:33 pnacl has its own bitcode checker (included with t
if platform == 'win':
NinjaBuild('sel_ldr64', out_dir)
- NinjaBuild('ncval_x86_64', out_dir)
elif platform == 'linux':
out_dir_64 = MakeNinjaRelPath(rel_out_dir + '-64')
GypNinjaBuild('x64', gyp_py, nacl_core_sdk_gyp, 'sel_ldr', out_dir_64)
- GypNinjaBuild('x64', gyp_py, all_gyp, 'ncval_x86_64', out_dir_64)
- # We only need sel_ldr and ncval_x86_64 from the 64-bit out directory.
+ # We only need sel_ldr from the 64-bit out directory.
# sel_ldr needs to be renamed, so we'll call it sel_ldr64.
files_to_copy = [
('sel_ldr', 'sel_ldr64'),
- ('ncval_x86_64', 'ncval_x86_64'),
('nacl_helper_bootstrap', 'nacl_helper_bootstrap64'),
]
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/sdk_files.list » ('j') | native_client_sdk/src/build_tools/sdk_files.list » ('J')

Powered by Google App Engine
This is Rietveld 408576698