| 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': 'executable', | 9 'type': 'executable', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp | 429 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp |
| 430 # file decide what to do on a per-OS basis; on Mac, internal plugins | 430 # file decide what to do on a per-OS basis; on Mac, internal plugins |
| 431 # go inside the framework, so this dependency is in chrome_dll.gypi. | 431 # go inside the framework, so this dependency is in chrome_dll.gypi. |
| 432 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', | 432 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', |
| 433 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp | 433 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp |
| 434 # file decide what to do on a per-OS basis; on Mac, internal plugins | 434 # file decide what to do on a per-OS basis; on Mac, internal plugins |
| 435 # go inside the framework, so this dependency is in chrome_dll.gypi. | 435 # go inside the framework, so this dependency is in chrome_dll.gypi. |
| 436 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', | 436 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', |
| 437 ], | 437 ], |
| 438 }], | 438 }], |
| 439 ['chrome_multiple_dll', { |
| 440 'defines': ['CHROME_MULTIPLE_DLL'], |
| 441 }], |
| 439 ['OS=="mac" and asan==1', { | 442 ['OS=="mac" and asan==1', { |
| 440 'xcode_settings': { | 443 'xcode_settings': { |
| 441 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. | 444 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. |
| 442 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', | 445 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', |
| 443 }, | 446 }, |
| 444 }], | 447 }], |
| 445 ['OS=="linux"', { | 448 ['OS=="linux"', { |
| 446 'conditions': [ | 449 'conditions': [ |
| 447 ['branding=="Chrome"', { | 450 ['branding=="Chrome"', { |
| 448 'dependencies': [ | 451 'dependencies': [ |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 'dependencies': [ | 640 'dependencies': [ |
| 638 'chrome_nacl_win64', | 641 'chrome_nacl_win64', |
| 639 ], | 642 ], |
| 640 }], | 643 }], |
| 641 ], | 644 ], |
| 642 }, | 645 }, |
| 643 ], | 646 ], |
| 644 }], | 647 }], |
| 645 ], | 648 ], |
| 646 } | 649 } |
| OLD | NEW |