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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 }], | 741 }], |
742 | 742 |
743 # Whether tests targets should be run, archived or just have the | 743 # Whether tests targets should be run, archived or just have the |
744 # dependencies verified. All the tests targets have the '_run' suffix, | 744 # dependencies verified. All the tests targets have the '_run' suffix, |
745 # e.g. base_unittests_run runs the target base_unittests. The test | 745 # e.g. base_unittests_run runs the target base_unittests. The test |
746 # target always calls tools/swarming_client/isolate.py. See the script's | 746 # target always calls tools/swarming_client/isolate.py. See the script's |
747 # --help for more information and the valid --mode values. Meant to be | 747 # --help for more information and the valid --mode values. Meant to be |
748 # overriden with GYP_DEFINES. | 748 # overriden with GYP_DEFINES. |
749 # TODO(maruel): Remove the conditions as more configurations are | 749 # TODO(maruel): Remove the conditions as more configurations are |
750 # supported. | 750 # supported. |
| 751 # TODO(csharp): Remove OS!="mac" once xcode can run the isolate code |
| 752 # again. |
751 # NOTE: The check for disable_nacl==0 and component=="static_library" | 753 # NOTE: The check for disable_nacl==0 and component=="static_library" |
752 # can't be used here because these variables are not defined yet, but it | 754 # can't be used here because these variables are not defined yet, but it |
753 # is still not supported. | 755 # is still not supported. |
754 ['OS!="ios" and OS!="android" and chromeos==0', { | 756 ['OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { |
755 'test_isolation_mode%': 'check', | 757 'test_isolation_mode%': 'check', |
756 }, { | 758 }, { |
757 'test_isolation_mode%': 'noop', | 759 'test_isolation_mode%': 'noop', |
758 }], | 760 }], |
759 # Whether Android ARM build uses OpenMAX DL FFT. | 761 # Whether Android ARM build uses OpenMAX DL FFT. |
760 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { | 762 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { |
761 # Currently only supported on Android ARM, without webview. | 763 # Currently only supported on Android ARM, without webview. |
762 # When enabled, this will also enable WebAudio on Android | 764 # When enabled, this will also enable WebAudio on Android |
763 # ARM. Default is enabled. | 765 # ARM. Default is enabled. |
764 'use_openmax_dl_fft%': 1, | 766 'use_openmax_dl_fft%': 1, |
(...skipping 3981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4746 # settings in target dicts. SYMROOT is a special case, because many other | 4748 # settings in target dicts. SYMROOT is a special case, because many other |
4747 # Xcode variables depend on it, including variables such as | 4749 # Xcode variables depend on it, including variables such as |
4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4750 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4751 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4750 # files to appear (when present) in the UI as actual files and not red | 4752 # files to appear (when present) in the UI as actual files and not red |
4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4753 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4752 # and therefore SYMROOT, needs to be set at the project level. | 4754 # and therefore SYMROOT, needs to be set at the project level. |
4753 'SYMROOT': '<(DEPTH)/xcodebuild', | 4755 'SYMROOT': '<(DEPTH)/xcodebuild', |
4754 }, | 4756 }, |
4755 } | 4757 } |
OLD | NEW |