summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_nacl.gyp
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-26 14:42:22 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-26 14:42:22 +0000
commit260e35b18bb4fe92dc83c1205edd5cb2bef56c65 (patch)
tree71124bb4133eb01627306b0486f440b322ec28e9 /ipc/ipc_nacl.gyp
parent5bbe65c23a3d25c9c6483ab0ffaefa26f3079860 (diff)
downloadchromium_src-260e35b18bb4fe92dc83c1205edd5cb2bef56c65.zip
chromium_src-260e35b18bb4fe92dc83c1205edd5cb2bef56c65.tar.gz
chromium_src-260e35b18bb4fe92dc83c1205edd5cb2bef56c65.tar.bz2
Rename ipc_untrusted -> ipc_nacl
BUG=345453 Review URL: https://codereview.chromium.org/178473007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_nacl.gyp')
-rw-r--r--ipc/ipc_nacl.gyp35
1 files changed, 35 insertions, 0 deletions
diff --git a/ipc/ipc_nacl.gyp b/ipc/ipc_nacl.gyp
new file mode 100644
index 0000000..3119f46
--- /dev/null
+++ b/ipc/ipc_nacl.gyp
@@ -0,0 +1,35 @@
+# Copyright 2014 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': [
+ '../build/common_untrusted.gypi',
+ 'ipc.gypi',
+ ],
+ 'conditions': [
+ ['disable_nacl==0 and disable_nacl_untrusted==0', {
+ 'targets': [
+ {
+ 'target_name': 'ipc_nacl',
+ 'type': 'none',
+ 'variables': {
+ 'ipc_target': 1,
+ 'nacl_untrusted_build': 1,
+ 'nlib_target': 'libipc_nacl.a',
+ 'build_glibc': 0,
+ 'build_newlib': 0,
+ 'build_irt': 1,
+ },
+ 'dependencies': [
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ '../base/base_nacl.gyp:base_nacl',
+ ],
+ },
+ ],
+ }],
+ ],
+}