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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 502993005: Enable incremental linking for static_library too (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: turn on Created 6 years, 3 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
« no previous file with comments | « build/common.gypi ('k') | no next file » | 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 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 'app/chrome_main.cc', 350 'app/chrome_main.cc',
351 'app/chrome_main_delegate.cc', 351 'app/chrome_main_delegate.cc',
352 'app/chrome_main_delegate.h', 352 'app/chrome_main_delegate.h',
353 ], 353 ],
354 'conditions': [ 354 'conditions': [
355 ['OS=="win"', { 355 ['OS=="win"', {
356 'dependencies': [ 356 'dependencies': [
357 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', 357 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
358 ], 358 ],
359 'conditions': [ 359 'conditions': [
360 ['incremental_chrome_dll==1', {
361 'msvs_settings': {
362 'VCLinkerTool': {
363 'UseLibraryDependencyInputs': 'true',
364 },
365 },
366 }],
360 ['chrome_pgo_phase==1', { 367 ['chrome_pgo_phase==1', {
361 'msvs_settings': { 368 'msvs_settings': {
362 'VCLinkerTool': { 369 'VCLinkerTool': {
363 'LinkTimeCodeGeneration': '2', 370 'LinkTimeCodeGeneration': '2',
364 }, 371 },
365 }, 372 },
366 }], 373 }],
367 ['chrome_pgo_phase==2', { 374 ['chrome_pgo_phase==2', {
368 'msvs_settings': { 375 'msvs_settings': {
369 'VCLinkerTool': { 376 'VCLinkerTool': {
370 'LinkTimeCodeGeneration': '3', 377 'LinkTimeCodeGeneration': '3',
371 }, 378 },
372 }, 379 },
373 }], 380 }],
374 ] 381 ]
375 }], 382 }],
376 ], 383 ],
377 }, # target chrome_child_dll 384 }, # target chrome_child_dll
378 ], 385 ],
379 }], 386 }],
380 ], 387 ],
381 } 388 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698