diff options
author | kaiwang@chromium.org <kaiwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-28 01:14:23 +0000 |
---|---|---|
committer | kaiwang@chromium.org <kaiwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-28 01:14:23 +0000 |
commit | a32c34b9dd7bcf91f5911768e4d601e0546f0d68 (patch) | |
tree | 48678be23971c5c86c6f676cca667f6a2e56bbee /components/components_tracing_untrusted.gyp | |
parent | ae2b0be000892f2c86aeb5a5aedb0ff4eb2d2063 (diff) | |
download | chromium_src-a32c34b9dd7bcf91f5911768e4d601e0546f0d68.zip chromium_src-a32c34b9dd7bcf91f5911768e4d601e0546f0d68.tar.gz chromium_src-a32c34b9dd7bcf91f5911768e4d601e0546f0d68.tar.bz2 |
Move tracing component to src/components
BUG=167317
COLLABORATOR=joi@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11624021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/components_tracing_untrusted.gyp')
-rw-r--r-- | components/components_tracing_untrusted.gyp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/components/components_tracing_untrusted.gyp b/components/components_tracing_untrusted.gyp new file mode 100644 index 0000000..ff3e720 --- /dev/null +++ b/components/components_tracing_untrusted.gyp @@ -0,0 +1,41 @@ +# 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. + +{ + 'includes': [ + '../build/common_untrusted.gypi', + ], + 'conditions': [ + ['disable_nacl==0 and disable_nacl_untrusted==0', { + 'targets': [ + { + 'target_name': 'tracing_untrusted', + 'type': 'none', + 'defines!': ['CONTENT_IMPLEMENTATION'], + 'dependencies': [ + '../base/base_untrusted.gyp:base_untrusted', + '../native_client/tools.gyp:prep_toolchain', + '../ipc/ipc.gyp:ipc', + ], + 'include_dirs': [ + '..', + ], + 'variables': { + 'nacl_untrusted_build': 1, + 'nlib_target': 'libtracing_untrusted.a', + 'build_glibc': 0, + 'build_newlib': 1, + }, + 'sources': [ + 'tracing/child_trace_message_filter.cc', + 'tracing/child_trace_message_filter.h', + 'tracing/tracing_messages.cc', + 'tracing/tracing_messages.h', + ], + }, + ], + }], + ], +} |