| 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 ], | 445 ], |
| 446 'dependencies': [ | 446 'dependencies': [ |
| 447 'packed_extra_resources', | 447 'packed_extra_resources', |
| 448 'packed_resources', | 448 'packed_resources', |
| 449 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp | 449 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp |
| 450 # file decide what to do on a per-OS basis; on Mac, internal plugins | 450 # file decide what to do on a per-OS basis; on Mac, internal plugins |
| 451 # go inside the framework, so this dependency is in chrome_dll.gypi. | 451 # go inside the framework, so this dependency is in chrome_dll.gypi. |
| 452 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 452 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 453 ], | 453 ], |
| 454 }], | 454 }], |
| 455 ['OS=="linux"', { |
| 456 'conditions': [ |
| 457 # For now, do not build nacl_helper on ARM or when disable_nacl=1 |
| 458 ['disable_nacl!=1 and target_arch!="arm"', { |
| 459 'dependencies': [ |
| 460 'nacl_helper_bootstrap', |
| 461 'nacl_helper', |
| 462 ], |
| 463 }], |
| 464 ], |
| 465 }], |
| 455 ['OS=="mac"', { | 466 ['OS=="mac"', { |
| 456 'dependencies': [ | 467 'dependencies': [ |
| 457 # On Mac, make sure we've built chrome_dll, which contains all of | 468 # On Mac, make sure we've built chrome_dll, which contains all of |
| 458 # the library code with Chromium functionality. | 469 # the library code with Chromium functionality. |
| 459 'chrome_dll', | 470 'chrome_dll', |
| 460 ], | 471 ], |
| 461 }], | 472 }], |
| 462 ['OS=="win"', { | 473 ['OS=="win"', { |
| 463 'conditions': [ | 474 'conditions': [ |
| 464 ['optimize_with_syzygy==1', { | 475 ['optimize_with_syzygy==1', { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 'configurations': { | 552 'configurations': { |
| 542 'Common_Base': { | 553 'Common_Base': { |
| 543 'msvs_target_platform': 'x64', | 554 'msvs_target_platform': 'x64', |
| 544 }, | 555 }, |
| 545 }, | 556 }, |
| 546 }, | 557 }, |
| 547 ], | 558 ], |
| 548 }], | 559 }], |
| 549 ], | 560 ], |
| 550 } | 561 } |
| OLD | NEW |