| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 # doesn't currently use the SCM keys for anything, | 113 # doesn't currently use the SCM keys for anything, |
| 114 # but this seems like a really good place to store them. | 114 # but this seems like a really good place to store them. |
| 115 'postbuild_name': 'Tweak Info.plist', | 115 'postbuild_name': 'Tweak Info.plist', |
| 116 'action': ['<(tweak_info_plist_path)', | 116 'action': ['<(tweak_info_plist_path)', |
| 117 '--breakpad=<(mac_breakpad_compiled_in)', | 117 '--breakpad=<(mac_breakpad_compiled_in)', |
| 118 '--breakpad_uploads=<(mac_breakpad_uploads)', | 118 '--breakpad_uploads=<(mac_breakpad_uploads)', |
| 119 '--keystone=0', | 119 '--keystone=0', |
| 120 '--scm=1', | 120 '--scm=1', |
| 121 '--branding=<(branding)'], | 121 '--branding=<(branding)'], |
| 122 }, | 122 }, |
| 123 { | |
| 124 'postbuild_name': 'Symlink Libraries', | |
| 125 'action': [ | |
| 126 'ln', | |
| 127 '-fns', | |
| 128 'Versions/Current/Libraries', | |
| 129 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' | |
| 130 ], | |
| 131 }, | |
| 132 ], | 123 ], |
| 133 'copies': [ | 124 'copies': [ |
| 134 { | 125 { |
| 135 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', | |
| 136 'files': [ | |
| 137 '<(PRODUCT_DIR)/exif.so', | |
| 138 ], | |
| 139 }, | |
| 140 { | |
| 141 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Helpers', | 126 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Helpers', |
| 142 'files': [ | 127 'files': [ |
| 143 '<(PRODUCT_DIR)/crashpad_handler', | 128 '<(PRODUCT_DIR)/crashpad_handler', |
| 144 ], | 129 ], |
| 145 }, | 130 }, |
| 146 { | 131 { |
| 147 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', | 132 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', |
| 148 'files': [], | 133 'files': [], |
| 149 'conditions': [ | 134 'conditions': [ |
| 150 ['disable_nacl!=1', { | 135 ['disable_nacl!=1', { |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 ], | 274 ], |
| 290 }], | 275 }], |
| 291 ['v8_use_external_startup_data==1', { | 276 ['v8_use_external_startup_data==1', { |
| 292 'mac_bundle_resources': [ | 277 'mac_bundle_resources': [ |
| 293 '<(PRODUCT_DIR)/natives_blob.bin', | 278 '<(PRODUCT_DIR)/natives_blob.bin', |
| 294 '<(PRODUCT_DIR)/snapshot_blob.bin', | 279 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 295 ], | 280 ], |
| 296 }], | 281 }], |
| 297 ], # conditions | 282 ], # conditions |
| 298 } | 283 } |
| OLD | NEW |