| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 'msvs_disabled_warnings': [4267, ], | 140 'msvs_disabled_warnings': [4267, ], |
| 141 'conditions': [ | 141 'conditions': [ |
| 142 ['OS=="linux"', { | 142 ['OS=="linux"', { |
| 143 'sources': [ | 143 'sources': [ |
| 144 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', | 144 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', |
| 145 '../components/nacl/zygote/nacl_fork_delegate_linux.h', | 145 '../components/nacl/zygote/nacl_fork_delegate_linux.h', |
| 146 ], | 146 ], |
| 147 'dependencies': [ | 147 'dependencies': [ |
| 148 # Required by nacl_fork_delegate_linux.cc. | 148 # Required by nacl_fork_delegate_linux.cc. |
| 149 '../sandbox/sandbox.gyp:suid_sandbox_client', | 149 '../sandbox/sandbox.gyp:suid_sandbox_client', |
| 150 '../sandbox/sandbox.gyp:sandbox_services', |
| 150 ] | 151 ] |
| 151 }], | 152 }], |
| 152 ], | 153 ], |
| 153 }, | 154 }, |
| 154 { | 155 { |
| 155 'target_name': 'nacl_renderer', | 156 'target_name': 'nacl_renderer', |
| 156 'type': 'static_library', | 157 'type': 'static_library', |
| 157 'sources': [ | 158 'sources': [ |
| 158 'nacl/renderer/file_downloader.cc', | 159 'nacl/renderer/file_downloader.cc', |
| 159 'nacl/renderer/file_downloader.h', | 160 'nacl/renderer/file_downloader.h', |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 ], | 521 ], |
| 521 'include_dirs': [ | 522 'include_dirs': [ |
| 522 '..', | 523 '..', |
| 523 ], | 524 ], |
| 524 'dependencies': [ | 525 'dependencies': [ |
| 525 '../content/content.gyp:content_common', | 526 '../content/content.gyp:content_common', |
| 526 ], | 527 ], |
| 527 }, | 528 }, |
| 528 ] | 529 ] |
| 529 } | 530 } |
| OLD | NEW |