| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'nacl/nacl_defines.gypi', | 10 'nacl/nacl_defines.gypi', |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 'targets': [ | 177 'targets': [ |
| 178 { | 178 { |
| 179 'target_name': 'nacl_helper', | 179 'target_name': 'nacl_helper', |
| 180 'type': 'executable', | 180 'type': 'executable', |
| 181 'include_dirs': [ | 181 'include_dirs': [ |
| 182 '..', | 182 '..', |
| 183 ], | 183 ], |
| 184 'dependencies': [ | 184 'dependencies': [ |
| 185 'nacl', | 185 'nacl', |
| 186 'nacl_common', | 186 'nacl_common', |
| 187 'nacl_switches', |
| 187 '../components/tracing.gyp:tracing', | 188 '../components/tracing.gyp:tracing', |
| 188 '../crypto/crypto.gyp:crypto', | 189 '../crypto/crypto.gyp:crypto', |
| 189 '../sandbox/sandbox.gyp:libc_urandom_override', | 190 '../sandbox/sandbox.gyp:libc_urandom_override', |
| 190 '../sandbox/sandbox.gyp:sandbox', | 191 '../sandbox/sandbox.gyp:sandbox', |
| 191 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 192 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 192 ], | 193 ], |
| 193 'defines': [ | 194 'defines': [ |
| 194 '<@(nacl_defines)', | 195 '<@(nacl_defines)', |
| 195 # Allow .cc files to know if they're being compiled as part | 196 # Allow .cc files to know if they're being compiled as part |
| 196 # of nacl_helper. | 197 # of nacl_helper. |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 ], | 398 ], |
| 398 'include_dirs': [ | 399 'include_dirs': [ |
| 399 '..', | 400 '..', |
| 400 ], | 401 ], |
| 401 'dependencies': [ | 402 'dependencies': [ |
| 402 '../content/content.gyp:content_common', | 403 '../content/content.gyp:content_common', |
| 403 ], | 404 ], |
| 404 }, | 405 }, |
| 405 ] | 406 ] |
| 406 } | 407 } |
| OLD | NEW |