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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 '../content/content.gyp:content_browser', | 132 '../content/content.gyp:content_browser', |
133 ], | 133 ], |
134 'defines': [ | 134 'defines': [ |
135 '<@(nacl_defines)', | 135 '<@(nacl_defines)', |
136 ], | 136 ], |
137 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 137 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
138 'msvs_disabled_warnings': [4267, ], | 138 'msvs_disabled_warnings': [4267, ], |
139 'conditions': [ | 139 'conditions': [ |
140 ['OS=="linux"', { | 140 ['OS=="linux"', { |
141 'sources': [ | 141 'sources': [ |
| 142 '../components/nacl/app/nacl_fork_delegates_linux.cc', |
| 143 '../components/nacl/app/nacl_fork_delegates_linux.h', |
142 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', | 144 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', |
143 '../components/nacl/zygote/nacl_fork_delegate_linux.h', | 145 '../components/nacl/zygote/nacl_fork_delegate_linux.h', |
144 ], | 146 ], |
145 'dependencies': [ | 147 'dependencies': [ |
146 # Required by nacl_fork_delegate_linux.cc. | 148 # Required by nacl_fork_delegate_linux.cc. |
147 '../sandbox/sandbox.gyp:suid_sandbox_client', | 149 '../sandbox/sandbox.gyp:suid_sandbox_client', |
148 ] | 150 ] |
149 }], | 151 }], |
150 ], | 152 ], |
151 }, | 153 }, |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 ], | 475 ], |
474 'include_dirs': [ | 476 'include_dirs': [ |
475 '..', | 477 '..', |
476 ], | 478 ], |
477 'dependencies': [ | 479 'dependencies': [ |
478 '../content/content.gyp:content_common', | 480 '../content/content.gyp:content_common', |
479 ], | 481 ], |
480 }, | 482 }, |
481 ] | 483 ] |
482 } | 484 } |
OLD | NEW |