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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 '<(PRODUCT_DIR)/ffmpegsumo.so', | 145 '<(PRODUCT_DIR)/ffmpegsumo.so', |
146 ], | 146 ], |
147 }, | 147 }, |
148 { | 148 { |
149 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', | 149 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', |
150 'files': [ | 150 'files': [ |
151 '<(PRODUCT_DIR)/PDF.plugin', | 151 '<(PRODUCT_DIR)/PDF.plugin', |
152 ], | 152 ], |
153 'conditions': [ | 153 'conditions': [ |
154 ['disable_nacl!=1', { | 154 ['disable_nacl!=1', { |
155 'files': [ | |
156 '<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.plugin', | |
157 ], | |
158 'conditions': [ | 155 'conditions': [ |
159 ['target_arch=="x64"', { | 156 ['target_arch=="x64"', { |
160 'files': [ | 157 'files': [ |
161 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 158 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
162 ], | 159 ], |
163 }, { | 160 }, { |
164 'files': [ | 161 'files': [ |
165 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', | 162 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', |
166 ], | 163 ], |
167 }], | 164 }], |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 ], | 297 ], |
301 }], | 298 }], |
302 }], | 299 }], |
303 ['icu_use_data_file_flag==1', { | 300 ['icu_use_data_file_flag==1', { |
304 'mac_bundle_resources': [ | 301 'mac_bundle_resources': [ |
305 '<(PRODUCT_DIR)/icudtl.dat', | 302 '<(PRODUCT_DIR)/icudtl.dat', |
306 ], | 303 ], |
307 }], | 304 }], |
308 ], # conditions | 305 ], # conditions |
309 } | 306 } |
OLD | NEW |