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 # 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ], | 359 ], |
360 'sources': [ | 360 'sources': [ |
361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
362 'app/chrome_main.cc', | 362 'app/chrome_main.cc', |
363 'app/chrome_main_delegate.cc', | 363 'app/chrome_main_delegate.cc', |
364 'app/chrome_main_delegate.h', | 364 'app/chrome_main_delegate.h', |
365 'app/close_handle_hook_win.cc', | 365 'app/close_handle_hook_win.cc', |
366 'app/close_handle_hook_win.h', | 366 'app/close_handle_hook_win.h', |
367 ], | 367 ], |
368 'conditions': [ | 368 'conditions': [ |
| 369 ['OS=="win" and win_use_allocator_shim==1', { |
| 370 'dependencies': [ |
| 371 '<(allocator_target)', |
| 372 ], |
| 373 }], |
369 ['OS=="win"', { | 374 ['OS=="win"', { |
370 'conditions': [ | 375 'conditions': [ |
371 ['chrome_pgo_phase==1', { | 376 ['chrome_pgo_phase==1', { |
372 'msvs_settings': { | 377 'msvs_settings': { |
373 'VCLinkerTool': { | 378 'VCLinkerTool': { |
374 'LinkTimeCodeGeneration': '2', | 379 'LinkTimeCodeGeneration': '2', |
375 'AdditionalOptions': [ | 380 'AdditionalOptions': [ |
376 '/PogoSafeMode', | 381 '/PogoSafeMode', |
377 ], | 382 ], |
378 }, | 383 }, |
(...skipping 12 matching lines...) Expand all Loading... |
391 'dependencies': [ | 396 'dependencies': [ |
392 '../pdf/pdf.gyp:pdf', | 397 '../pdf/pdf.gyp:pdf', |
393 ], | 398 ], |
394 }], | 399 }], |
395 ], | 400 ], |
396 }, # target chrome_child_dll | 401 }, # target chrome_child_dll |
397 ], | 402 ], |
398 }], | 403 }], |
399 ], | 404 ], |
400 } | 405 } |
OLD | NEW |