Replace command buffer FlushSync with WaitForTokenInRange and WaitForGetOffsetInRange
[chromium-blink-merge.git] / components / tracing_nacl.gyp
blob5a606919f9a9a9cc0181c07685ea69f045b84ce5
1 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
7   'includes': [
8     '../build/common_untrusted.gypi',
9   ],
10   'conditions': [
11     ['disable_nacl==0 and disable_nacl_untrusted==0', {
12       'targets': [
13         {
14           'target_name': 'tracing_nacl',
15           'type': 'none',
16           'defines!': ['CONTENT_IMPLEMENTATION'],
17           'dependencies': [
18             '../base/base_nacl.gyp:base_nacl',
19             '../native_client/tools.gyp:prep_toolchain',
20             '../ipc/ipc.gyp:ipc',
21           ],
22           'include_dirs': [
23             '..',
24           ],
25           'variables': {
26             'nacl_untrusted_build': 1,
27             'nlib_target': 'libtracing_nacl.a',
28             'build_glibc': 0,
29             'build_newlib': 0,
30             'build_irt': 1,
31           },
32           'sources': [
33             'tracing/child_trace_message_filter.cc',
34             'tracing/child_trace_message_filter.h',
35             'tracing/tracing_messages.cc',
36             'tracing/tracing_messages.h',
37           ],
38         },
39       ],
40     }],
41   ],