OLD | NEW |
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 Loading... |
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 }], | |
367 ['chrome_pgo_phase==1', { | 360 ['chrome_pgo_phase==1', { |
368 'msvs_settings': { | 361 'msvs_settings': { |
369 'VCLinkerTool': { | 362 'VCLinkerTool': { |
370 'LinkTimeCodeGeneration': '2', | 363 'LinkTimeCodeGeneration': '2', |
371 }, | 364 }, |
372 }, | 365 }, |
373 }], | 366 }], |
374 ['chrome_pgo_phase==2', { | 367 ['chrome_pgo_phase==2', { |
375 'msvs_settings': { | 368 'msvs_settings': { |
376 'VCLinkerTool': { | 369 'VCLinkerTool': { |
377 'LinkTimeCodeGeneration': '3', | 370 'LinkTimeCodeGeneration': '3', |
378 }, | 371 }, |
379 }, | 372 }, |
380 }], | 373 }], |
381 ] | 374 ] |
382 }], | 375 }], |
383 ], | 376 ], |
384 }, # target chrome_child_dll | 377 }, # target chrome_child_dll |
385 ], | 378 ], |
386 }], | 379 }], |
387 ], | 380 ], |
388 } | 381 } |
OLD | NEW |