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

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

Issue 1403303002: [NaCl SDK] Ship arm_elf_loader.nexe on all platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | native_client_sdk/src/build_tools/sdk_files.list » ('j') | 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 e99216a4589f6e4cdaf488ee7311a42304c18d3c..04a3160611b58c2ad027fb98f19cffeef1f1867f 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -395,6 +395,9 @@ def GypNinjaInstall(pepperdir, toolchains):
['irt_core_newlib_x32.nexe', 'irt_core_x86_32.nexe'],
['irt_core_newlib_x64.nexe', 'irt_core_x86_64.nexe'],
]
+ arm_files = [
+ ['elf_loader_newlib_arm.nexe', 'elf_loader_arm.nexe'],
+ ]
tools_files_64 = []
@@ -429,19 +432,18 @@ def GypNinjaInstall(pepperdir, toolchains):
pair[0] += '.exe'
pair[1] += '.exe'
- InstallFiles(GetNinjaOutDir('x64'), tools_dir, tools_files_64)
- InstallFiles(GetNinjaOutDir('ia32'), tools_dir, tools_files_32)
-
# Add ARM binaries
if platform == 'linux' and not options.no_arm_trusted:
- arm_files = [
+ arm_files += [
['irt_core_newlib_arm.nexe', 'irt_core_arm.nexe'],
- ['elf_loader_newlib_arm.nexe', 'elf_loader_arm.nexe'],
['nacl_helper_bootstrap', 'nacl_helper_bootstrap_arm'],
['nonsfi_loader_newlib_arm_nonsfi.nexe', 'nonsfi_loader_arm'],
['sel_ldr', 'sel_ldr_arm']
]
- InstallFiles(GetNinjaOutDir('arm'), tools_dir, arm_files)
+
+ InstallFiles(GetNinjaOutDir('x64'), tools_dir, tools_files_64)
+ InstallFiles(GetNinjaOutDir('ia32'), tools_dir, tools_files_32)
+ InstallFiles(GetNinjaOutDir('arm'), tools_dir, arm_files)
for tc in toolchains:
if tc in ('host', 'clang-newlib'):
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/sdk_files.list » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698