| 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 # This file contains resources for the main Mac chromium bundle. | 5 # This file contains resources for the main Mac chromium bundle. |
| 6 { | 6 { |
| 7 # The main browser executable's name is <(mac_product_name). | 7 # The main browser executable's name is <(mac_product_name). |
| 8 # Certain things will get confused if two modules in the | 8 # Certain things will get confused if two modules in the |
| 9 # executable share the same name, so append " Framework" to the | 9 # executable share the same name, so append " Framework" to the |
| 10 # product_name used for the framework. This will result in | 10 # product_name used for the framework. This will result in |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 ], | 74 ], |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 'app_mode_app', | 76 'app_mode_app', |
| 77 # Bring in pdfsqueeze and run it on all pdfs | 77 # Bring in pdfsqueeze and run it on all pdfs |
| 78 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', | 78 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', |
| 79 '../crypto/crypto.gyp:crypto', | 79 '../crypto/crypto.gyp:crypto', |
| 80 # On Mac, Flash gets put into the framework, so we need this | 80 # On Mac, Flash gets put into the framework, so we need this |
| 81 # dependency here. flash_player.gyp will copy the Flash bundle | 81 # dependency here. flash_player.gyp will copy the Flash bundle |
| 82 # into PRODUCT_DIR. | 82 # into PRODUCT_DIR. |
| 83 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', | 83 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', |
| 84 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmplugin', | 84 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', |
| 85 'chrome_resources.gyp:packed_extra_resources', | 85 'chrome_resources.gyp:packed_extra_resources', |
| 86 'chrome_resources.gyp:packed_resources', | 86 'chrome_resources.gyp:packed_resources', |
| 87 ], | 87 ], |
| 88 'rules': [ | 88 'rules': [ |
| 89 { | 89 { |
| 90 'rule_name': 'pdfsqueeze', | 90 'rule_name': 'pdfsqueeze', |
| 91 'extension': 'pdf', | 91 'extension': 'pdf', |
| 92 'inputs': [ | 92 'inputs': [ |
| 93 '<(PRODUCT_DIR)/pdfsqueeze', | 93 '<(PRODUCT_DIR)/pdfsqueeze', |
| 94 ], | 94 ], |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 ], | 275 ], |
| 276 }], | 276 }], |
| 277 }], | 277 }], |
| 278 ['enable_hidpi==1', { | 278 ['enable_hidpi==1', { |
| 279 'mac_bundle_resources': [ | 279 'mac_bundle_resources': [ |
| 280 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak', | 280 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak', |
| 281 ], | 281 ], |
| 282 }], | 282 }], |
| 283 ], # conditions | 283 ], # conditions |
| 284 } | 284 } |
| OLD | NEW |