| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', | 303 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', |
| 304 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))', | 304 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))', |
| 305 # Note: pseudo_locales are generated via the packed_resources | 305 # Note: pseudo_locales are generated via the packed_resources |
| 306 # dependency but not copied to the final target. See | 306 # dependency but not copied to the final target. See |
| 307 # common.gypi for more info. | 307 # common.gypi for more info. |
| 308 ], | 308 ], |
| 309 'mac_bundle_resources!': [ | 309 'mac_bundle_resources!': [ |
| 310 'app/framework-Info.plist', | 310 'app/framework-Info.plist', |
| 311 ], | 311 ], |
| 312 'dependencies': [ | 312 'dependencies': [ |
| 313 'app_mode_app', |
| 313 # Bring in pdfsqueeze and run it on all pdfs | 314 # Bring in pdfsqueeze and run it on all pdfs |
| 314 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', | 315 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', |
| 315 '../crypto/crypto.gyp:crypto', | 316 '../crypto/crypto.gyp:crypto', |
| 316 # On Mac, Flash gets put into the framework, so we need this | 317 # On Mac, Flash gets put into the framework, so we need this |
| 317 # dependency here. flash_player.gyp will copy the Flash bundle | 318 # dependency here. flash_player.gyp will copy the Flash bundle |
| 318 # into PRODUCT_DIR. | 319 # into PRODUCT_DIR. |
| 319 # TODO(viettrungluu): Once enabled for Mac, Flapper binaries | 320 # TODO(viettrungluu): Once enabled for Mac, Flapper binaries |
| 320 # will also need to be put into the bundle. | 321 # will also need to be put into the bundle. |
| 321 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 322 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 322 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', | 323 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 }, | 438 }, |
| 438 { | 439 { |
| 439 # Copy of resources used by tests. | 440 # Copy of resources used by tests. |
| 440 'destination': '<(PRODUCT_DIR)/pseudo_locales', | 441 'destination': '<(PRODUCT_DIR)/pseudo_locales', |
| 441 'files': [ | 442 'files': [ |
| 442 '<(SHARED_INTERMEDIATE_DIR)/<(pseudo_locales).pak' | 443 '<(SHARED_INTERMEDIATE_DIR)/<(pseudo_locales).pak' |
| 443 ], | 444 ], |
| 444 }, | 445 }, |
| 445 { | 446 { |
| 446 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/resourc
es', | 447 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/resourc
es', |
| 447 'files': [], | 448 'files': [ |
| 449 # Loader bundle for platform apps. |
| 450 '<(PRODUCT_DIR)/app_mode_loader.app', |
| 451 ], |
| 448 'conditions': [ | 452 'conditions': [ |
| 449 ['debug_devtools!=0', { | 453 ['debug_devtools!=0', { |
| 450 'files': [ | 454 'files': [ |
| 451 '<(PRODUCT_DIR)/resources/inspector', | 455 '<(PRODUCT_DIR)/resources/inspector', |
| 452 ], | 456 ], |
| 453 }], | 457 }], |
| 454 ], | 458 ], |
| 455 }, | 459 }, |
| 456 ], | 460 ], |
| 457 'conditions': [ | 461 'conditions': [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 ], | 534 ], |
| 531 }], | 535 }], |
| 532 ], # conditions | 536 ], # conditions |
| 533 }], # OS=="mac" | 537 }], # OS=="mac" |
| 534 ], # conditions | 538 ], # conditions |
| 535 }, # target chrome_dll | 539 }, # target chrome_dll |
| 536 ], # targets | 540 ], # targets |
| 537 }], # OS=="mac" or OS=="win" | 541 }], # OS=="mac" or OS=="win" |
| 538 ], | 542 ], |
| 539 } | 543 } |
| OLD | NEW |