| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 'conditions': [ | 159 'conditions': [ |
| 160 ['branding == "Chrome"', { | 160 ['branding == "Chrome"', { |
| 161 'files': [ | 161 'files': [ |
| 162 '<(PRODUCT_DIR)/widevinecdmadapter.plugin', | 162 '<(PRODUCT_DIR)/widevinecdmadapter.plugin', |
| 163 ], | 163 ], |
| 164 }], | 164 }], |
| 165 ], | 165 ], |
| 166 }, | 166 }, |
| 167 { | 167 { |
| 168 # Copy of resources used by tests. | 168 # Copy of resources used by tests. |
| 169 'destination': '<(PRODUCT_DIR)', | |
| 170 'files': [ | |
| 171 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak' | |
| 172 ], | |
| 173 }, | |
| 174 { | |
| 175 # Copy of resources used by tests. | |
| 176 'destination': '<(PRODUCT_DIR)/pseudo_locales', | 169 'destination': '<(PRODUCT_DIR)/pseudo_locales', |
| 177 'files': [ | 170 'files': [ |
| 178 '<(SHARED_INTERMEDIATE_DIR)/<(pseudo_locales).pak' | 171 '<(SHARED_INTERMEDIATE_DIR)/<(pseudo_locales).pak' |
| 179 ], | 172 ], |
| 180 }, | 173 }, |
| 181 { | 174 { |
| 182 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', | 175 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', |
| 183 'files': [ | 176 'files': [ |
| 184 # Loader bundle for platform apps. | 177 # Loader bundle for platform apps. |
| 185 '<(PRODUCT_DIR)/app_mode_loader.app', | 178 '<(PRODUCT_DIR)/app_mode_loader.app', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 ], | 268 ], |
| 276 }], | 269 }], |
| 277 ['v8_use_external_startup_data==1', { | 270 ['v8_use_external_startup_data==1', { |
| 278 'mac_bundle_resources': [ | 271 'mac_bundle_resources': [ |
| 279 '<(PRODUCT_DIR)/natives_blob.bin', | 272 '<(PRODUCT_DIR)/natives_blob.bin', |
| 280 '<(PRODUCT_DIR)/snapshot_blob.bin', | 273 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 281 ], | 274 ], |
| 282 }], | 275 }], |
| 283 ], # conditions | 276 ], # conditions |
| 284 } | 277 } |
| OLD | NEW |