| 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 # "chrome" etc.; should we try to extract from there instead? | 393 # "chrome" etc.; should we try to extract from there instead? |
| 394 | 394 |
| 395 # On Mac, this is done in chrome_dll.gypi. | 395 # On Mac, this is done in chrome_dll.gypi. |
| 396 ['internal_pdf', { | 396 ['internal_pdf', { |
| 397 'dependencies': [ | 397 'dependencies': [ |
| 398 '../pdf/pdf.gyp:pdf', | 398 '../pdf/pdf.gyp:pdf', |
| 399 ], | 399 ], |
| 400 }], | 400 }], |
| 401 ], | 401 ], |
| 402 'dependencies': [ | 402 'dependencies': [ |
| 403 'packed_extra_resources', | 403 'chrome_resources.gyp:packed_extra_resources', |
| 404 'packed_resources', | 404 'chrome_resources.gyp: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 when disable_nacl=1 | 413 # For now, do not build nacl_helper when disable_nacl=1 |
| 414 ['disable_nacl!=1', { | 414 ['disable_nacl!=1', { |
| (...skipping 133 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 |