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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1344 # the source files as found in svn. The second list, used only for linux, | 1344 # the source files as found in svn. The second list, used only for linux, |
1345 # contains the destination location for each of the files. When a crx | 1345 # contains the destination location for each of the files. When a crx |
1346 # is added or removed from the list, the chrome/browser/resources/ | 1346 # is added or removed from the list, the chrome/browser/resources/ |
1347 # default_apps/external_extensions.json file must also be updated. | 1347 # default_apps/external_extensions.json file must also be updated. |
1348 'default_apps_list': [ | 1348 'default_apps_list': [ |
1349 'browser/resources/default_apps/external_extensions.json', | 1349 'browser/resources/default_apps/external_extensions.json', |
1350 'browser/resources/default_apps/gmail.crx', | 1350 'browser/resources/default_apps/gmail.crx', |
1351 'browser/resources/default_apps/search.crx', | 1351 'browser/resources/default_apps/search.crx', |
1352 'browser/resources/default_apps/youtube.crx', | 1352 'browser/resources/default_apps/youtube.crx', |
1353 'browser/resources/default_apps/drive.crx', | 1353 'browser/resources/default_apps/drive.crx', |
| 1354 'browser/resources/default_apps/docs.crx', |
1354 ], | 1355 ], |
1355 'default_apps_list_linux_dest': [ | 1356 'default_apps_list_linux_dest': [ |
1356 '<(PRODUCT_DIR)/default_apps/external_extensions.json', | 1357 '<(PRODUCT_DIR)/default_apps/external_extensions.json', |
1357 '<(PRODUCT_DIR)/default_apps/gmail.crx', | 1358 '<(PRODUCT_DIR)/default_apps/gmail.crx', |
1358 '<(PRODUCT_DIR)/default_apps/search.crx', | 1359 '<(PRODUCT_DIR)/default_apps/search.crx', |
1359 '<(PRODUCT_DIR)/default_apps/youtube.crx', | 1360 '<(PRODUCT_DIR)/default_apps/youtube.crx', |
1360 '<(PRODUCT_DIR)/default_apps/drive.crx', | 1361 '<(PRODUCT_DIR)/default_apps/drive.crx', |
| 1362 '<(PRODUCT_DIR)/default_apps/docs.crx', |
1361 ], | 1363 ], |
1362 }, | 1364 }, |
1363 'target_defaults': { | 1365 'target_defaults': { |
1364 'variables': { | 1366 'variables': { |
1365 # The condition that operates on chromium_code is in a target_conditions | 1367 # The condition that operates on chromium_code is in a target_conditions |
1366 # section, and will not have access to the default fallback value of | 1368 # section, and will not have access to the default fallback value of |
1367 # chromium_code at the top of this file, or to the chromium_code | 1369 # chromium_code at the top of this file, or to the chromium_code |
1368 # variable placed at the root variables scope of .gyp files, because | 1370 # variable placed at the root variables scope of .gyp files, because |
1369 # those variables are not set at target scope. As a workaround, | 1371 # those variables are not set at target scope. As a workaround, |
1370 # if chromium_code is not set at target scope, define it in target scope | 1372 # if chromium_code is not set at target scope, define it in target scope |
(...skipping 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3506 # settings in target dicts. SYMROOT is a special case, because many other | 3508 # settings in target dicts. SYMROOT is a special case, because many other |
3507 # Xcode variables depend on it, including variables such as | 3509 # Xcode variables depend on it, including variables such as |
3508 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3510 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3509 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3511 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3510 # files to appear (when present) in the UI as actual files and not red | 3512 # files to appear (when present) in the UI as actual files and not red |
3511 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3513 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3512 # and therefore SYMROOT, needs to be set at the project level. | 3514 # and therefore SYMROOT, needs to be set at the project level. |
3513 'SYMROOT': '<(DEPTH)/xcodebuild', | 3515 'SYMROOT': '<(DEPTH)/xcodebuild', |
3514 }, | 3516 }, |
3515 } | 3517 } |
OLD | NEW |