| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 ], | 183 ], |
| 184 'dependencies': [ | 184 'dependencies': [ |
| 185 'nacl', | 185 'nacl', |
| 186 'nacl_common', | 186 'nacl_common', |
| 187 '../components/tracing.gyp:tracing', | 187 '../components/tracing.gyp:tracing', |
| 188 '../crypto/crypto.gyp:crypto', | 188 '../crypto/crypto.gyp:crypto', |
| 189 '../sandbox/sandbox.gyp:libc_urandom_override', | 189 '../sandbox/sandbox.gyp:libc_urandom_override', |
| 190 '../sandbox/sandbox.gyp:sandbox', | 190 '../sandbox/sandbox.gyp:sandbox', |
| 191 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 191 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 192 ], | 192 ], |
| 193 'ldflags!': [ |
| 194 # Do not pick the default ASan options from |
| 195 # base/debug/sanitizer_options.cc to avoid a conflict with those |
| 196 # in nacl/nacl_helper_linux.cc. |
| 197 '-Wl,-u_sanitizer_options_link_helper', |
| 198 ], |
| 193 'defines': [ | 199 'defines': [ |
| 194 '<@(nacl_defines)', | 200 '<@(nacl_defines)', |
| 195 # Allow .cc files to know if they're being compiled as part | 201 # Allow .cc files to know if they're being compiled as part |
| 196 # of nacl_helper. | 202 # of nacl_helper. |
| 197 'IN_NACL_HELPER=1', | 203 'IN_NACL_HELPER=1', |
| 198 ], | 204 ], |
| 199 'sources': [ | 205 'sources': [ |
| 200 'nacl/loader/nacl_helper_linux.cc', | 206 'nacl/loader/nacl_helper_linux.cc', |
| 201 'nacl/loader/nacl_helper_linux.h', | 207 'nacl/loader/nacl_helper_linux.h', |
| 202 'nacl/loader/nacl_sandbox_linux.cc', | 208 'nacl/loader/nacl_sandbox_linux.cc', |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 ], | 408 ], |
| 403 'include_dirs': [ | 409 'include_dirs': [ |
| 404 '..', | 410 '..', |
| 405 ], | 411 ], |
| 406 'dependencies': [ | 412 'dependencies': [ |
| 407 '../content/content.gyp:content_common', | 413 '../content/content.gyp:content_common', |
| 408 ], | 414 ], |
| 409 }, | 415 }, |
| 410 ] | 416 ] |
| 411 } | 417 } |
| OLD | NEW |