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