| 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 53377002ae028f71b8d7b0b2253a3d246bdd9f9e..e010b3be52842a4b052b2a42c7f463e701e159bb 100755
|
| --- a/native_client_sdk/src/build_tools/build_sdk.py
|
| +++ b/native_client_sdk/src/build_tools/build_sdk.py
|
| @@ -853,8 +853,11 @@ def main(args):
|
| if options.tar:
|
| BuildStepTarBundle(pepper_ver, tarfile)
|
|
|
| - if platform == 'linux':
|
| - BuildStepBuildPNaClComponent(pepper_ver, chrome_revision)
|
| + # TODO(sbc): Re-enable this once we switch the pnacl component build
|
| + # from gyp to gn:
|
| + # https://bugs.chromium.org/p/chromium/issues/detail?id=646241
|
| + #if platform == 'linux':
|
| + #BuildStepBuildPNaClComponent(pepper_ver, chrome_revision)
|
|
|
| if options.build_app_engine and platform == 'linux':
|
| BuildStepBuildAppEngine(pepperdir, chrome_revision)
|
| @@ -870,7 +873,7 @@ def main(args):
|
| # Only archive sdk_tools/naclport/pnacl_component on linux.
|
| if platform == 'linux':
|
| BuildStepArchiveSDKTools()
|
| - BuildStepArchivePNaClComponent(chrome_revision)
|
| + #BuildStepArchivePNaClComponent(chrome_revision)
|
|
|
| return 0
|
|
|
|
|