| 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 'conditions': [ |
| 458 # For now, do not build nacl_helper on ARM |
| 459 ['target_arch!="arm"', { |
| 460 'dependencies': [ |
| 461 'nacl_helper_bootstrap', |
| 462 'nacl_helper', |
| 463 ], |
| 464 }], |
| 465 ], |
| 466 }], |
| 456 ['OS=="mac"', { | 467 ['OS=="mac"', { |
| 457 'dependencies': [ | 468 'dependencies': [ |
| 458 # On Mac, make sure we've built chrome_dll, which contains all of | 469 # On Mac, make sure we've built chrome_dll, which contains all of |
| 459 # the library code with Chromium functionality. | 470 # the library code with Chromium functionality. |
| 460 'chrome_dll', | 471 'chrome_dll', |
| 461 ], | 472 ], |
| 462 }], | 473 }], |
| 463 ['OS=="win"', { | 474 ['OS=="win"', { |
| 464 'conditions': [ | 475 'conditions': [ |
| 465 ['optimize_with_syzygy==1', { | 476 ['optimize_with_syzygy==1', { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 'configurations': { | 553 'configurations': { |
| 543 'Common_Base': { | 554 'Common_Base': { |
| 544 'msvs_target_platform': 'x64', | 555 'msvs_target_platform': 'x64', |
| 545 }, | 556 }, |
| 546 }, | 557 }, |
| 547 }, | 558 }, |
| 548 ], | 559 ], |
| 549 }], | 560 }], |
| 550 ], | 561 ], |
| 551 } | 562 } |
| OLD | NEW |