| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # 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 |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'include': [ | 6 'include': [ |
| 7 '../native_client/build/untrusted.gypi', | 7 '../native_client/build/untrusted.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 ['OS=="linux"', { | 134 ['OS=="linux"', { |
| 135 'targets': [ | 135 'targets': [ |
| 136 { | 136 { |
| 137 'target_name': 'nacl_helper', | 137 'target_name': 'nacl_helper', |
| 138 'type': 'executable', | 138 'type': 'executable', |
| 139 'include_dirs': [ | 139 'include_dirs': [ |
| 140 '..', | 140 '..', |
| 141 ], | 141 ], |
| 142 'dependencies': [ | 142 'dependencies': [ |
| 143 '../crypto/crypto.gyp:crypto', | 143 '../crypto/crypto.gyp:crypto', |
| 144 '../sandbox/sandbox.gyp:libc_urandom_override', |
| 144 'nacl', | 145 'nacl', |
| 145 ], | 146 ], |
| 146 'sources': [ | 147 'sources': [ |
| 147 'nacl/nacl_helper_linux.cc', | 148 'nacl/nacl_helper_linux.cc', |
| 148 '../base/posix/unix_domain_socket.cc', | 149 '../base/posix/unix_domain_socket.cc', |
| 149 '../chrome/common/nacl_messages.cc', | 150 '../chrome/common/nacl_messages.cc', |
| 150 '../chrome/common/nacl_types.cc', | 151 '../chrome/common/nacl_types.cc', |
| 151 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', | 152 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', |
| 152 ], | 153 ], |
| 153 'conditions': [ | 154 'conditions': [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 'target_name': 'nacl_win64', | 195 'target_name': 'nacl_win64', |
| 195 'type': 'none', | 196 'type': 'none', |
| 196 'sources': [], | 197 'sources': [], |
| 197 }, | 198 }, |
| 198 ], | 199 ], |
| 199 }], | 200 }], |
| 200 ], | 201 ], |
| 201 }], | 202 }], |
| 202 ], | 203 ], |
| 203 } | 204 } |
| OLD | NEW |