| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 ], | 446 ], |
| 447 'dependencies': [ | 447 'dependencies': [ |
| 448 'packed_extra_resources', | 448 'packed_extra_resources', |
| 449 'packed_resources', | 449 'packed_resources', |
| 450 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp | 450 # Copy Flash Player 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/adobe/flash/flash_player.gyp:flash_player', | 453 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 454 ], | 454 ], |
| 455 }], | 455 }], |
| 456 ['OS=="linux"', { | |
| 457 'dependencies': [ | |
| 458 'nacl_helper_bootstrap', | |
| 459 'nacl_helper', | |
| 460 ], | |
| 461 }], | |
| 462 ['OS=="mac"', { | 456 ['OS=="mac"', { |
| 463 'dependencies': [ | 457 'dependencies': [ |
| 464 # On Mac, make sure we've built chrome_dll, which contains all of | 458 # On Mac, make sure we've built chrome_dll, which contains all of |
| 465 # the library code with Chromium functionality. | 459 # the library code with Chromium functionality. |
| 466 'chrome_dll', | 460 'chrome_dll', |
| 467 ], | 461 ], |
| 468 }], | 462 }], |
| 469 ['OS=="win"', { | 463 ['OS=="win"', { |
| 470 'conditions': [ | 464 'conditions': [ |
| 471 ['optimize_with_syzygy==1', { | 465 ['optimize_with_syzygy==1', { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 'configurations': { | 542 'configurations': { |
| 549 'Common_Base': { | 543 'Common_Base': { |
| 550 'msvs_target_platform': 'x64', | 544 'msvs_target_platform': 'x64', |
| 551 }, | 545 }, |
| 552 }, | 546 }, |
| 553 }, | 547 }, |
| 554 ], | 548 ], |
| 555 }], | 549 }], |
| 556 ], | 550 ], |
| 557 } | 551 } |
| OLD | NEW |