diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 22:13:28 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 22:13:28 +0000 |
commit | d6345fe31199b634aff5a5ca0a1c5ed2f7defab3 (patch) | |
tree | be645e00348203976f3f785f6aff33b7989be220 /ppapi | |
parent | 035c9fbf518054dc29fc8f0dbc71d95a6bed3bc4 (diff) | |
download | chromium_src-d6345fe31199b634aff5a5ca0a1c5ed2f7defab3.zip chromium_src-d6345fe31199b634aff5a5ca0a1c5ed2f7defab3.tar.gz chromium_src-d6345fe31199b634aff5a5ca0a1c5ed2f7defab3.tar.bz2 |
Enable Pepper threading, but only for the untrusted side of the NaCl IPC proxy.
BUG=116317
TEST=manual for now
Review URL: https://chromiumcodereview.appspot.com/11013053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/ppapi_ipc_proxy_untrusted.gyp | 3 | ||||
-rw-r--r-- | ppapi/ppapi_ipc_untrusted.gyp | 3 | ||||
-rw-r--r-- | ppapi/ppapi_shared_untrusted.gyp | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/ppapi/ppapi_ipc_proxy_untrusted.gyp b/ppapi/ppapi_ipc_proxy_untrusted.gyp index 9111d3a..ffa4ac2 100644 --- a/ppapi/ppapi_ipc_proxy_untrusted.gyp +++ b/ppapi/ppapi_ipc_proxy_untrusted.gyp @@ -27,6 +27,9 @@ 'nlib_target': 'libppapi_proxy_untrusted.a', 'build_glibc': 0, 'build_newlib': 1, + # Enable threading for the untrusted side of the proxy. + # TODO(bbudge) remove when this is the default. + 'enable_pepper_threading': '1', }, 'defines': [ 'NACL_PPAPI_IPC_PROXY', diff --git a/ppapi/ppapi_ipc_untrusted.gyp b/ppapi/ppapi_ipc_untrusted.gyp index ec6fdf9..2cee51c 100644 --- a/ppapi/ppapi_ipc_untrusted.gyp +++ b/ppapi/ppapi_ipc_untrusted.gyp @@ -23,6 +23,9 @@ 'nlib_target': 'libppapi_ipc_untrusted.a', 'build_glibc': 0, 'build_newlib': 1, + # Enable threading for the untrusted side of the proxy. + # TODO(bbudge) remove when this is the default. + 'enable_pepper_threading': '1', }, 'defines': [ 'NACL_PPAPI_IPC_PROXY', diff --git a/ppapi/ppapi_shared_untrusted.gyp b/ppapi/ppapi_shared_untrusted.gyp index 2897337..9049861 100644 --- a/ppapi/ppapi_shared_untrusted.gyp +++ b/ppapi/ppapi_shared_untrusted.gyp @@ -23,6 +23,9 @@ 'nlib_target': 'libppapi_shared_untrusted.a', 'build_glibc': 0, 'build_newlib': 1, + # Enable threading for the untrusted side of the proxy. + # TODO(bbudge) remove when this is the default. + 'enable_pepper_threading': '1', }, 'defines': [ 'NACL_PPAPI_IPC_PROXY', |