| 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 }], |
| 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 } |
| OLD | NEW |