Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: components/nacl.gyp

Issue 1612663002: Use a valid /prefetch argument when launching a process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bit
Patch Set: self-review Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 ], 470 ],
464 'include_dirs': [ 471 'include_dirs': [
465 '..', 472 '..',
466 ], 473 ],
467 'dependencies': [ 474 'dependencies': [
468 '../content/content.gyp:content_common', 475 '../content/content.gyp:content_common',
469 ], 476 ],
470 }, 477 },
471 ] 478 ]
472 } 479 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698