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