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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 1414713006: Only use the PGO optimizations on chrome_child.dll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 5 'conditions': [
6 # Dummy target to allow chrome to require chrome_dll to build 6 # Dummy target to allow chrome to require chrome_dll to build
7 # without actually linking to the library 7 # without actually linking to the library
8 ['OS=="mac"', { 8 ['OS=="mac"', {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 ['win_use_allocator_shim==1', { 253 ['win_use_allocator_shim==1', {
254 'dependencies': [ 254 'dependencies': [
255 '<(allocator_target)', 255 '<(allocator_target)',
256 ], 256 ],
257 }], 257 }],
258 ['enable_basic_printing==1 or enable_print_preview==1', { 258 ['enable_basic_printing==1 or enable_print_preview==1', {
259 'dependencies': [ 259 'dependencies': [
260 '../printing/printing.gyp:printing', 260 '../printing/printing.gyp:printing',
261 ], 261 ],
262 }], 262 }],
263 ['chrome_pgo_phase==1', {
264 'msvs_settings': {
265 'VCLinkerTool': {
266 'LinkTimeCodeGeneration': '2',
267 'AdditionalOptions': [
268 '/PogoSafeMode',
269 ],
270 },
271 },
272 }],
273 ['chrome_pgo_phase==2', {
274 'msvs_settings': {
275 'VCLinkerTool': {
276 'LinkTimeCodeGeneration': '3',
277 },
278 },
279 }],
280 ] 263 ]
281 }], 264 }],
282 ['chrome_multiple_dll==1', { 265 ['chrome_multiple_dll==1', {
283 'defines': [ 266 'defines': [
284 'CHROME_MULTIPLE_DLL_BROWSER', 267 'CHROME_MULTIPLE_DLL_BROWSER',
285 ], 268 ],
286 }, { 269 }, {
287 'dependencies': [ 270 'dependencies': [
288 '<@(chromium_child_dependencies)', 271 '<@(chromium_child_dependencies)',
289 '../content/content.gyp:content_app_both', 272 '../content/content.gyp:content_app_both',
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 'dependencies': [ 391 'dependencies': [
409 '../pdf/pdf.gyp:pdf', 392 '../pdf/pdf.gyp:pdf',
410 ], 393 ],
411 }], 394 }],
412 ], 395 ],
413 }, # target chrome_child_dll 396 }, # target chrome_child_dll
414 ], 397 ],
415 }], 398 }],
416 ], 399 ],
417 } 400 }
OLDNEW
« no previous file with comments | « no previous file | tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698