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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'action': [ | 125 'action': [ |
126 'ln', | 126 'ln', |
127 '-fns', | 127 '-fns', |
128 'Versions/Current/Libraries', | 128 'Versions/Current/Libraries', |
129 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' | 129 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' |
130 ], | 130 ], |
131 }, | 131 }, |
132 ], | 132 ], |
133 'copies': [ | 133 'copies': [ |
134 { | 134 { |
| 135 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', |
| 136 'files': [ |
| 137 '<(PRODUCT_DIR)/exif.so', |
| 138 ], |
| 139 }, |
| 140 { |
135 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Helpers', | 141 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Helpers', |
136 'files': [ | 142 'files': [ |
137 '<(PRODUCT_DIR)/crashpad_handler', | 143 '<(PRODUCT_DIR)/crashpad_handler', |
138 ], | 144 ], |
139 }, | 145 }, |
140 { | 146 { |
141 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', | 147 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', |
142 'files': [], | 148 'files': [], |
143 'conditions': [ | 149 'conditions': [ |
144 ['disable_nacl!=1', { | 150 ['disable_nacl!=1', { |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 ], | 289 ], |
284 }], | 290 }], |
285 ['v8_use_external_startup_data==1', { | 291 ['v8_use_external_startup_data==1', { |
286 'mac_bundle_resources': [ | 292 'mac_bundle_resources': [ |
287 '<(PRODUCT_DIR)/natives_blob.bin', | 293 '<(PRODUCT_DIR)/natives_blob.bin', |
288 '<(PRODUCT_DIR)/snapshot_blob.bin', | 294 '<(PRODUCT_DIR)/snapshot_blob.bin', |
289 ], | 295 ], |
290 }], | 296 }], |
291 ], # conditions | 297 ], # conditions |
292 } | 298 } |
OLD | NEW |