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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 }], | 122 }], |
123 ], | 123 ], |
124 }, | 124 }, |
125 { | 125 { |
126 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins/P
epperFlash', | 126 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins/P
epperFlash', |
127 'files': [], | 127 'files': [], |
128 'conditions': [ | 128 'conditions': [ |
129 ['branding == "Chrome"', { | 129 ['branding == "Chrome"', { |
130 'files': [ | 130 'files': [ |
131 '<(PRODUCT_DIR)/PepperFlash/PepperFlashPlayer.plugin', | 131 '<(PRODUCT_DIR)/PepperFlash/PepperFlashPlayer.plugin', |
| 132 '<(PRODUCT_DIR)/PepperFlash/manifest.json', |
132 ], | 133 ], |
133 }], | 134 }], |
134 ], | 135 ], |
135 }, | 136 }, |
136 { | 137 { |
137 # The adapter is not a complete library on its own. It needs the Widevine | 138 # The adapter is not a complete library on its own. It needs the Widevine |
138 # CDM to work. | 139 # CDM to work. |
139 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries/<(widevin
e_cdm_path)', | 140 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries/<(widevin
e_cdm_path)', |
140 'files': [], | 141 'files': [], |
141 'conditions': [ | 142 'conditions': [ |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 ], | 254 ], |
254 }], | 255 }], |
255 ['v8_use_external_startup_data==1', { | 256 ['v8_use_external_startup_data==1', { |
256 'mac_bundle_resources': [ | 257 'mac_bundle_resources': [ |
257 '<(PRODUCT_DIR)/natives_blob.bin', | 258 '<(PRODUCT_DIR)/natives_blob.bin', |
258 '<(PRODUCT_DIR)/snapshot_blob.bin', | 259 '<(PRODUCT_DIR)/snapshot_blob.bin', |
259 ], | 260 ], |
260 }], | 261 }], |
261 ], # conditions | 262 ], # conditions |
262 } | 263 } |
OLD | NEW |