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 '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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 'packed_extra_resources', | 403 'packed_extra_resources', |
404 'packed_resources', | 404 'packed_resources', |
405 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp | 405 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp |
406 # file decide what to do on a per-OS basis; on Mac, internal plugins | 406 # file decide what to do on a per-OS basis; on Mac, internal plugins |
407 # go inside the framework, so this dependency is in chrome_dll.gypi. | 407 # go inside the framework, so this dependency is in chrome_dll.gypi. |
408 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 408 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
409 ], | 409 ], |
410 }], | 410 }], |
411 ['OS=="linux"', { | 411 ['OS=="linux"', { |
412 'conditions': [ | 412 'conditions': [ |
413 # For now, do not build nacl_helper on ARM or when disable_nacl=1 | 413 # For now, do not build nacl_helper when disable_nacl=1 |
414 ['disable_nacl!=1 and target_arch!="arm"', { | 414 ['disable_nacl!=1', { |
415 'dependencies': [ | 415 'dependencies': [ |
416 'nacl_helper_bootstrap', | 416 'nacl_helper_bootstrap', |
417 'nacl_helper', | 417 'nacl_helper', |
418 ], | 418 ], |
419 }], | 419 }], |
420 ], | 420 ], |
421 }], | 421 }], |
422 ['OS=="mac"', { | 422 ['OS=="mac"', { |
423 'dependencies': [ | 423 'dependencies': [ |
424 # On Mac, make sure we've built chrome_dll, which contains all of | 424 # On Mac, make sure we've built chrome_dll, which contains all of |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 'configurations': { | 548 'configurations': { |
549 'Common_Base': { | 549 'Common_Base': { |
550 'msvs_target_platform': 'x64', | 550 'msvs_target_platform': 'x64', |
551 }, | 551 }, |
552 }, | 552 }, |
553 }, | 553 }, |
554 ], | 554 ], |
555 }], | 555 }], |
556 ], | 556 ], |
557 } | 557 } |
OLD | NEW |