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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 | 913 |
914 ['OS=="linux" and target_arch=="mipsel"', { | 914 ['OS=="linux" and target_arch=="mipsel"', { |
915 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', | 915 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', |
916 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', | 916 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', |
917 }], | 917 }], |
918 | 918 |
919 # Whether tests targets should be run, archived or just have the | 919 # Whether tests targets should be run, archived or just have the |
920 # dependencies verified. All the tests targets have the '_run' suffix, | 920 # dependencies verified. All the tests targets have the '_run' suffix, |
921 # e.g. base_unittests_run runs the target base_unittests. The test | 921 # e.g. base_unittests_run runs the target base_unittests. The test |
922 # target always calls tools/swarming_client/isolate.py. See the script's | 922 # target always calls tools/swarming_client/isolate.py. See the script's |
923 # --help for more information and the valid --mode values. Meant to be | 923 # --help for more information. Meant to be overriden with GYP_DEFINES. |
924 # overriden with GYP_DEFINES. | |
925 # TODO(maruel): Remove the conditions as more configurations are | 924 # TODO(maruel): Remove the conditions as more configurations are |
926 # supported. | 925 # supported. |
927 # NOTE: The check for disable_nacl==0 and component=="static_library" | |
928 # can't be used here because these variables are not defined yet, but it | |
929 # is still not supported. | |
930 ['OS!="ios" and OS!="android" and chromeos==0', { | 926 ['OS!="ios" and OS!="android" and chromeos==0', { |
931 'test_isolation_mode%': 'check', | 927 'test_isolation_mode%': 'check', |
932 }, { | 928 }, { |
933 'test_isolation_mode%': 'noop', | 929 'test_isolation_mode%': 'noop', |
934 }], | 930 }], |
935 # Whether Android build uses OpenMAX DL FFT. | 931 # Whether Android build uses OpenMAX DL FFT. |
936 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target
_arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="mip
sel")', { | 932 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target
_arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="mip
sel")', { |
937 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mip
sel. | 933 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mip
sel. |
938 # When enabled, this will also enable WebAudio support on | 934 # When enabled, this will also enable WebAudio support on |
939 # Android for these architectures. Default is enabled. Whether | 935 # Android for these architectures. Default is enabled. Whether |
(...skipping 4775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5715 # settings in target dicts. SYMROOT is a special case, because many other | 5711 # settings in target dicts. SYMROOT is a special case, because many other |
5716 # Xcode variables depend on it, including variables such as | 5712 # Xcode variables depend on it, including variables such as |
5717 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5713 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5718 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5714 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5719 # files to appear (when present) in the UI as actual files and not red | 5715 # files to appear (when present) in the UI as actual files and not red |
5720 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5716 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5721 # and therefore SYMROOT, needs to be set at the project level. | 5717 # and therefore SYMROOT, needs to be set at the project level. |
5722 'SYMROOT': '<(DEPTH)/xcodebuild', | 5718 'SYMROOT': '<(DEPTH)/xcodebuild', |
5723 }, | 5719 }, |
5724 } | 5720 } |
OLD | NEW |