| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ], | 101 ], |
| 102 'variables': { | 102 'variables': { |
| 103 'conditions': [ | 103 'conditions': [ |
| 104 ['branding=="Chrome"', { | 104 ['branding=="Chrome"', { |
| 105 'theme_dir_name': 'google_chrome', | 105 'theme_dir_name': 'google_chrome', |
| 106 }, { # else: 'branding!="Chrome" | 106 }, { # else: 'branding!="Chrome" |
| 107 'theme_dir_name': 'chromium', | 107 'theme_dir_name': 'chromium', |
| 108 }], | 108 }], |
| 109 ], | 109 ], |
| 110 'libpeer_target_type%': 'static_library', | 110 'libpeer_target_type%': 'static_library', |
| 111 'repack_path': '../tools/grit/grit/format/repack.py', | |
| 112 }, | 111 }, |
| 113 'postbuilds': [ | 112 'postbuilds': [ |
| 114 { | 113 { |
| 115 # Modify the Info.plist as needed. The script explains why | 114 # Modify the Info.plist as needed. The script explains why |
| 116 # this is needed. This is also done in the chrome target. | 115 # this is needed. This is also done in the chrome target. |
| 117 # The framework needs the Breakpad keys if this feature is | 116 # The framework needs the Breakpad keys if this feature is |
| 118 # enabled. It does not need the Keystone keys; these always | 117 # enabled. It does not need the Keystone keys; these always |
| 119 # come from the outer application bundle. The framework | 118 # come from the outer application bundle. The framework |
| 120 # doesn't currently use the SCM keys for anything, | 119 # doesn't currently use the SCM keys for anything, |
| 121 # but this seems like a really good place to store them. | 120 # but this seems like a really good place to store them. |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ], | 307 ], |
| 309 }], | 308 }], |
| 310 }], | 309 }], |
| 311 ['icu_use_data_file_flag==1', { | 310 ['icu_use_data_file_flag==1', { |
| 312 'mac_bundle_resources': [ | 311 'mac_bundle_resources': [ |
| 313 '<(PRODUCT_DIR)/icudtl.dat', | 312 '<(PRODUCT_DIR)/icudtl.dat', |
| 314 ], | 313 ], |
| 315 }], | 314 }], |
| 316 ], # conditions | 315 ], # conditions |
| 317 } | 316 } |
| OLD | NEW |