| 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 }], | 1141 }], |
| 1142 ], | 1142 ], |
| 1143 | 1143 |
| 1144 # List of default apps to install in new profiles. The first list contains | 1144 # List of default apps to install in new profiles. The first list contains |
| 1145 # the source files as found in svn. The second list, used only for linux, | 1145 # the source files as found in svn. The second list, used only for linux, |
| 1146 # contains the destination location for each of the files. When a crx | 1146 # contains the destination location for each of the files. When a crx |
| 1147 # is added or removed from the list, the chrome/browser/resources/ | 1147 # is added or removed from the list, the chrome/browser/resources/ |
| 1148 # default_apps/external_extensions.json file must also be updated. | 1148 # default_apps/external_extensions.json file must also be updated. |
| 1149 'default_apps_list': [ | 1149 'default_apps_list': [ |
| 1150 'browser/resources/default_apps/external_extensions.json', | 1150 'browser/resources/default_apps/external_extensions.json', |
| 1151 'browser/resources/default_apps/docs.crx', | |
| 1152 'browser/resources/default_apps/gmail.crx', | 1151 'browser/resources/default_apps/gmail.crx', |
| 1153 'browser/resources/default_apps/search.crx', | 1152 'browser/resources/default_apps/search.crx', |
| 1154 'browser/resources/default_apps/youtube.crx', | 1153 'browser/resources/default_apps/youtube.crx', |
| 1155 ], | 1154 ], |
| 1156 'default_apps_list_linux_dest': [ | 1155 'default_apps_list_linux_dest': [ |
| 1157 '<(PRODUCT_DIR)/default_apps/external_extensions.json', | 1156 '<(PRODUCT_DIR)/default_apps/external_extensions.json', |
| 1158 '<(PRODUCT_DIR)/default_apps/docs.crx', | |
| 1159 '<(PRODUCT_DIR)/default_apps/gmail.crx', | 1157 '<(PRODUCT_DIR)/default_apps/gmail.crx', |
| 1160 '<(PRODUCT_DIR)/default_apps/search.crx', | 1158 '<(PRODUCT_DIR)/default_apps/search.crx', |
| 1161 '<(PRODUCT_DIR)/default_apps/youtube.crx', | 1159 '<(PRODUCT_DIR)/default_apps/youtube.crx', |
| 1162 ], | 1160 ], |
| 1163 }, | 1161 }, |
| 1164 'target_defaults': { | 1162 'target_defaults': { |
| 1165 'variables': { | 1163 'variables': { |
| 1166 # The condition that operates on chromium_code is in a target_conditions | 1164 # The condition that operates on chromium_code is in a target_conditions |
| 1167 # section, and will not have access to the default fallback value of | 1165 # section, and will not have access to the default fallback value of |
| 1168 # chromium_code at the top of this file, or to the chromium_code | 1166 # chromium_code at the top of this file, or to the chromium_code |
| (...skipping 1895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3064 # settings in target dicts. SYMROOT is a special case, because many other | 3062 # settings in target dicts. SYMROOT is a special case, because many other |
| 3065 # Xcode variables depend on it, including variables such as | 3063 # Xcode variables depend on it, including variables such as |
| 3066 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3064 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3067 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3065 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3068 # files to appear (when present) in the UI as actual files and not red | 3066 # files to appear (when present) in the UI as actual files and not red |
| 3069 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3067 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3070 # and therefore SYMROOT, needs to be set at the project level. | 3068 # and therefore SYMROOT, needs to be set at the project level. |
| 3071 'SYMROOT': '<(DEPTH)/xcodebuild', | 3069 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3072 }, | 3070 }, |
| 3073 } | 3071 } |
| OLD | NEW |