diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 02:20:12 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 02:20:12 +0000 |
commit | 84ed6dd1a043b6586792cef9ee2e609538ca183d (patch) | |
tree | bcfca8ddfbeeba932889667a8feb970fc3f4fe2f /ipc/ipc_untrusted.gyp | |
parent | 21ee4acc4e419f01956516a690e7873d32204fab (diff) | |
download | chromium_src-84ed6dd1a043b6586792cef9ee2e609538ca183d.zip chromium_src-84ed6dd1a043b6586792cef9ee2e609538ca183d.tar.gz chromium_src-84ed6dd1a043b6586792cef9ee2e609538ca183d.tar.bz2 |
Add an untrusted NaCl build for IPC.
BUG=116317
TEST=compiles
Review URL: https://chromiumcodereview.appspot.com/10534115
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_untrusted.gyp')
-rw-r--r-- | ipc/ipc_untrusted.gyp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ipc/ipc_untrusted.gyp b/ipc/ipc_untrusted.gyp new file mode 100644 index 0000000..5a6a6ff --- /dev/null +++ b/ipc/ipc_untrusted.gyp @@ -0,0 +1,36 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'variables': { + 'chromium_code': 1, + }, + 'includes': [ + '../native_client/build/untrusted.gypi', + 'ipc.gypi', + ], + 'conditions': [ + ['disable_nacl_untrusted==0', { + 'targets': [ + { + 'target_name': 'ipc_untrusted', + 'type': 'none', + 'variables': { + 'ipc_target': 1, + 'nacl_untrusted_build': 1, + 'nlib_target': 'libipc_untrusted.a', + 'build_glibc': 0, + 'build_newlib': 1, + }, + 'dependencies': [ + '<(DEPTH)/native_client/tools.gyp:prep_toolchain', + '<(DEPTH)/native_client/src/untrusted/pthread/pthread.gyp:pthread_lib', + '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', + '../base/base_untrusted.gyp:base_untrusted', + ], + }, + ], + }], + ], +} |