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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', | 449 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', |
450 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp | 450 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp |
451 # file decide what to do on a per-OS basis; on Mac, internal plugins | 451 # file decide what to do on a per-OS basis; on Mac, internal plugins |
452 # go inside the framework, so this dependency is in chrome_dll.gypi. | 452 # go inside the framework, so this dependency is in chrome_dll.gypi. |
453 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', | 453 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', |
454 ], | 454 ], |
455 }], | 455 }], |
456 ['chrome_multiple_dll', { | 456 ['chrome_multiple_dll', { |
457 'defines': ['CHROME_MULTIPLE_DLL'], | 457 'defines': ['CHROME_MULTIPLE_DLL'], |
458 }], | 458 }], |
459 ['OS=="mac" and asan==1', { | |
460 'xcode_settings': { | |
461 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. | |
462 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', | |
463 }, | |
464 }], | |
465 ['OS=="linux"', { | 459 ['OS=="linux"', { |
466 'conditions': [ | 460 'conditions': [ |
467 ['branding=="Chrome"', { | 461 ['branding=="Chrome"', { |
468 'dependencies': [ | 462 'dependencies': [ |
469 'linux_installer_configs', | 463 'linux_installer_configs', |
470 ], | 464 ], |
471 }], | 465 }], |
472 # For now, do not build nacl_helper when disable_nacl=1 | 466 # For now, do not build nacl_helper when disable_nacl=1 |
473 # http://code.google.com/p/gyp/issues/detail?id=239 | 467 # http://code.google.com/p/gyp/issues/detail?id=239 |
474 ['disable_nacl==0', { | 468 ['disable_nacl==0', { |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 'dependencies': [ | 685 'dependencies': [ |
692 'chrome_nacl_win64', | 686 'chrome_nacl_win64', |
693 ], | 687 ], |
694 }], | 688 }], |
695 ], | 689 ], |
696 }, | 690 }, |
697 ], | 691 ], |
698 }], | 692 }], |
699 ], | 693 ], |
700 } | 694 } |
OLD | NEW |