| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # | |
| 3 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 5 | 4 |
| 6 { | 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 7 'includes': [ | 9 'includes': [ |
| 8 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
| 9 ], | 11 ], |
| 10 'conditions': [ | 12 'conditions': [ |
| 11 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 13 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 12 'targets': [ | 14 'targets': [ |
| 13 { | 15 { |
| 14 'target_name': 'tracing_nacl', | 16 'target_name': 'content_common_nacl_nonsfi', |
| 15 'type': 'none', | 17 'type': 'none', |
| 16 'defines!': ['CONTENT_IMPLEMENTATION'], | |
| 17 'dependencies': [ | |
| 18 '../base/base_nacl.gyp:base_nacl', | |
| 19 '../base/base_nacl.gyp:base_nacl_nonsfi', | |
| 20 '../ipc/ipc_nacl.gyp:ipc_nacl', | |
| 21 '../ipc/ipc_nacl.gyp:ipc_nacl_nonsfi', | |
| 22 '../native_client/tools.gyp:prep_toolchain', | |
| 23 ], | |
| 24 'include_dirs': [ | |
| 25 '..', | |
| 26 ], | |
| 27 'variables': { | 18 'variables': { |
| 28 'nacl_untrusted_build': 1, | 19 'nacl_untrusted_build': 1, |
| 29 'nlib_target': 'libtracing_nacl.a', | 20 'nlib_target': 'libcontent_common_nacl_nonsfi.a', |
| 30 'build_glibc': 0, | 21 'build_glibc': 0, |
| 31 'build_newlib': 0, | 22 'build_newlib': 0, |
| 32 'build_irt': 1, | 23 'build_irt': 0, |
| 33 'build_pnacl_newlib': 0, | 24 'build_pnacl_newlib': 0, |
| 34 'build_nonsfi_helper': 1, | 25 'build_nonsfi_helper': 1, |
| 26 |
| 27 'sources': [ |
| 28 'common/send_zygote_child_ping_linux.cc', |
| 29 'public/common/send_zygote_child_ping_linux.h', |
| 30 # TODO(hidehiko): Add sandbox code. |
| 31 ], |
| 35 }, | 32 }, |
| 36 'sources': [ | 33 'dependencies': [ |
| 37 'tracing/child_trace_message_filter.cc', | 34 '../base/base_nacl.gyp:base_nacl_nonsfi', |
| 38 'tracing/child_trace_message_filter.h', | 35 '../native_client/tools.gyp:prep_toolchain', |
| 39 'tracing/tracing_messages.cc', | |
| 40 'tracing/tracing_messages.h', | |
| 41 ], | 36 ], |
| 42 }, | 37 }, |
| 43 ], | 38 ], |
| 44 }], | 39 }], |
| 45 ], | 40 ], |
| 46 } | 41 } |
| OLD | NEW |