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 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'sources': [ | 132 'sources': [ |
133 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', | 133 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', |
134 '../components/nacl/zygote/nacl_fork_delegate_linux.h', | 134 '../components/nacl/zygote/nacl_fork_delegate_linux.h', |
135 ], | 135 ], |
136 'dependencies': [ | 136 'dependencies': [ |
137 # Required by nacl_fork_delegate_linux.cc. | 137 # Required by nacl_fork_delegate_linux.cc. |
138 '../sandbox/sandbox.gyp:suid_sandbox_client', | 138 '../sandbox/sandbox.gyp:suid_sandbox_client', |
139 '../sandbox/sandbox.gyp:sandbox_services', | 139 '../sandbox/sandbox.gyp:sandbox_services', |
140 ] | 140 ] |
141 }], | 141 }], |
| 142 ['OS=="win"', { |
| 143 'dependencies': [ |
| 144 # TODO(fdoray): Remove this once the PreRead field trial has |
| 145 # expired. crbug.com/577698 |
| 146 '../components/components.gyp:startup_metric_utils_common', |
| 147 ] |
| 148 }], |
142 ], | 149 ], |
143 }, | 150 }, |
144 { | 151 { |
145 # GN version: //components/nacl/renderer | 152 # GN version: //components/nacl/renderer |
146 'target_name': 'nacl_renderer', | 153 'target_name': 'nacl_renderer', |
147 'type': 'static_library', | 154 'type': 'static_library', |
148 'sources': [ | 155 'sources': [ |
149 'nacl/renderer/file_downloader.cc', | 156 'nacl/renderer/file_downloader.cc', |
150 'nacl/renderer/file_downloader.h', | 157 'nacl/renderer/file_downloader.h', |
151 'nacl/renderer/histogram.cc', | 158 'nacl/renderer/histogram.cc', |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 ], | 461 ], |
455 'include_dirs': [ | 462 'include_dirs': [ |
456 '..', | 463 '..', |
457 ], | 464 ], |
458 'dependencies': [ | 465 'dependencies': [ |
459 '../content/content.gyp:content_common', | 466 '../content/content.gyp:content_common', |
460 ], | 467 ], |
461 }, | 468 }, |
462 ] | 469 ] |
463 } | 470 } |
OLD | NEW |