Commit 72756433 authored by Ben Smith's avatar Ben Smith

[NaCl SDK] Add irt_ppapi.h to the bionic SDK.

This was not included, but was referenced by ps_main.c

BUG=none
R=sbc@google.com, sbc@chromium.org, noelallen@chromium.org

Review URL: https://codereview.chromium.org/563863003

Cr-Commit-Position: refs/heads/master@{#294487}
parent e4654f76
......@@ -259,6 +259,9 @@ NACL_HEADER_MAP = {
('native_client/src/untrusted/valgrind/dynamic_annotations.h', 'nacl/'),
('ppapi/nacl_irt/public/irt_ppapi.h', ''),
],
'bionic': [
('ppapi/nacl_irt/public/irt_ppapi.h', ''),
],
'host': []
}
......@@ -565,6 +568,7 @@ def BuildStepBuildToolchains(pepperdir, toolchains):
glibcdir = os.path.join(pepperdir, 'toolchain', platform + '_x86_glibc')
armdir = os.path.join(pepperdir, 'toolchain', platform + '_arm_newlib')
pnacldir = os.path.join(pepperdir, 'toolchain', platform + '_pnacl')
bionicdir = os.path.join(pepperdir, 'toolchain', platform + '_arm_bionic')
if set(toolchains) & set(['glibc', 'newlib']):
GypNinjaBuild_PPAPI('ia32', GYPBUILD_DIR)
......@@ -586,6 +590,10 @@ def BuildStepBuildToolchains(pepperdir, toolchains):
InstallNaClHeaders(GetToolchainNaClInclude('newlib', armdir, 'arm'),
'arm')
if 'bionic' in toolchains:
InstallNaClHeaders(GetToolchainNaClInclude('bionic', bionicdir, 'arm'),
'bionic')
if 'pnacl' in toolchains:
# NOTE: For ia32, gyp builds both x86-32 and x86-64 by default.
for arch in ('ia32', 'arm'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment