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 2348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2359 '<(PRODUCT_DIR)/default_apps/external_extensions.json', | 2359 '<(PRODUCT_DIR)/default_apps/external_extensions.json', |
2360 '<(PRODUCT_DIR)/default_apps/gmail.crx', | 2360 '<(PRODUCT_DIR)/default_apps/gmail.crx', |
2361 '<(PRODUCT_DIR)/default_apps/search.crx', | 2361 '<(PRODUCT_DIR)/default_apps/search.crx', |
2362 '<(PRODUCT_DIR)/default_apps/youtube.crx', | 2362 '<(PRODUCT_DIR)/default_apps/youtube.crx', |
2363 '<(PRODUCT_DIR)/default_apps/drive.crx', | 2363 '<(PRODUCT_DIR)/default_apps/drive.crx', |
2364 '<(PRODUCT_DIR)/default_apps/docs.crx', | 2364 '<(PRODUCT_DIR)/default_apps/docs.crx', |
2365 ], | 2365 ], |
2366 | 2366 |
2367 # Whether to allow building of the GPU-related isolates. | 2367 # Whether to allow building of the GPU-related isolates. |
2368 'archive_gpu_tests%': 0, | 2368 'archive_gpu_tests%': 0, |
| 2369 |
| 2370 # Whether to allow building of chromoting related isolates. |
| 2371 'chromoting_swarm_tests%': 0, |
2369 }, | 2372 }, |
2370 'target_defaults': { | 2373 'target_defaults': { |
2371 'variables': { | 2374 'variables': { |
2372 # The condition that operates on chromium_code is in a target_conditions | 2375 # The condition that operates on chromium_code is in a target_conditions |
2373 # section, and will not have access to the default fallback value of | 2376 # section, and will not have access to the default fallback value of |
2374 # chromium_code at the top of this file, or to the chromium_code | 2377 # chromium_code at the top of this file, or to the chromium_code |
2375 # variable placed at the root variables scope of .gyp files, because | 2378 # variable placed at the root variables scope of .gyp files, because |
2376 # those variables are not set at target scope. As a workaround, | 2379 # those variables are not set at target scope. As a workaround, |
2377 # if chromium_code is not set at target scope, define it in target scope | 2380 # if chromium_code is not set at target scope, define it in target scope |
2378 # to contain whatever value it has during early variable expansion. | 2381 # to contain whatever value it has during early variable expansion. |
(...skipping 3400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5779 # settings in target dicts. SYMROOT is a special case, because many other | 5782 # settings in target dicts. SYMROOT is a special case, because many other |
5780 # Xcode variables depend on it, including variables such as | 5783 # Xcode variables depend on it, including variables such as |
5781 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5784 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5782 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5785 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5783 # files to appear (when present) in the UI as actual files and not red | 5786 # files to appear (when present) in the UI as actual files and not red |
5784 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5787 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5785 # and therefore SYMROOT, needs to be set at the project level. | 5788 # and therefore SYMROOT, needs to be set at the project level. |
5786 'SYMROOT': '<(DEPTH)/xcodebuild', | 5789 'SYMROOT': '<(DEPTH)/xcodebuild', |
5787 }, | 5790 }, |
5788 } | 5791 } |
OLD | NEW |