summaryrefslogtreecommitdiffstats
path: root/components/tracing_nacl.gyp
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-04 01:27:54 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-04 01:27:54 +0000
commit6bf35021df50e798713e0d6d904f492d6eb8ad1b (patch)
tree79db584120dcadde5173477b2a73c2ebd143d44c /components/tracing_nacl.gyp
parentd387f88664251bbe219735476153b97b14cba8e3 (diff)
downloadchromium_src-6bf35021df50e798713e0d6d904f492d6eb8ad1b.zip
chromium_src-6bf35021df50e798713e0d6d904f492d6eb8ad1b.tar.gz
chromium_src-6bf35021df50e798713e0d6d904f492d6eb8ad1b.tar.bz2
Rename tracing_untrusted->tracing_nacl
BUG=345453 Review URL: https://codereview.chromium.org/185063002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254628 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/tracing_nacl.gyp')
-rw-r--r--components/tracing_nacl.gyp42
1 files changed, 42 insertions, 0 deletions
diff --git a/components/tracing_nacl.gyp b/components/tracing_nacl.gyp
new file mode 100644
index 0000000..5a60691
--- /dev/null
+++ b/components/tracing_nacl.gyp
@@ -0,0 +1,42 @@
+# 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.
+
+{
+ 'includes': [
+ '../build/common_untrusted.gypi',
+ ],
+ 'conditions': [
+ ['disable_nacl==0 and disable_nacl_untrusted==0', {
+ 'targets': [
+ {
+ 'target_name': 'tracing_nacl',
+ 'type': 'none',
+ 'defines!': ['CONTENT_IMPLEMENTATION'],
+ 'dependencies': [
+ '../base/base_nacl.gyp:base_nacl',
+ '../native_client/tools.gyp:prep_toolchain',
+ '../ipc/ipc.gyp:ipc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'variables': {
+ 'nacl_untrusted_build': 1,
+ 'nlib_target': 'libtracing_nacl.a',
+ 'build_glibc': 0,
+ 'build_newlib': 0,
+ 'build_irt': 1,
+ },
+ 'sources': [
+ 'tracing/child_trace_message_filter.cc',
+ 'tracing/child_trace_message_filter.h',
+ 'tracing/tracing_messages.cc',
+ 'tracing/tracing_messages.h',
+ ],
+ },
+ ],
+ }],
+ ],
+}