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 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 }], # linux_lsb_release=="12.04" | 670 }], # linux_lsb_release=="12.04" |
671 | 671 |
672 ['OS=="linux" and target_arch=="mipsel"', { | 672 ['OS=="linux" and target_arch=="mipsel"', { |
673 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', | 673 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', |
674 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', | 674 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', |
675 }], | 675 }], |
676 | 676 |
677 # Whether tests targets should be run, archived or just have the | 677 # Whether tests targets should be run, archived or just have the |
678 # dependencies verified. All the tests targets have the '_run' suffix, | 678 # dependencies verified. All the tests targets have the '_run' suffix, |
679 # e.g. base_unittests_run runs the target base_unittests. The test | 679 # e.g. base_unittests_run runs the target base_unittests. The test |
680 # target always calls tools/swarm_client/isolate.py. See the script's | 680 # target always calls tools/swarming_client/isolate.py. See the script's |
681 # --help for more information and the valid --mode values. Meant to be | 681 # --help for more information and the valid --mode values. Meant to be |
682 # overriden with GYP_DEFINES. | 682 # overriden with GYP_DEFINES. |
683 # TODO(maruel): Remove the conditions as more configurations are | 683 # TODO(maruel): Remove the conditions as more configurations are |
684 # supported. | 684 # supported. |
685 # TODO(csharp): Remove OS!="mac" once xcode can run the isolate code | 685 # TODO(csharp): Remove OS!="mac" once xcode can run the isolate code |
686 # again. | 686 # again. |
687 # NOTE: The check for disable_nacl==0 and component=="static_library" | 687 # NOTE: The check for disable_nacl==0 and component=="static_library" |
688 # can't be used here because these variables are not defined yet, but it | 688 # can't be used here because these variables are not defined yet, but it |
689 # is still not supported. | 689 # is still not supported. |
690 ['OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { | 690 ['OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { |
(...skipping 4018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4709 # settings in target dicts. SYMROOT is a special case, because many other | 4709 # settings in target dicts. SYMROOT is a special case, because many other |
4710 # Xcode variables depend on it, including variables such as | 4710 # Xcode variables depend on it, including variables such as |
4711 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4711 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4712 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4712 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4713 # files to appear (when present) in the UI as actual files and not red | 4713 # files to appear (when present) in the UI as actual files and not red |
4714 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4714 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4715 # and therefore SYMROOT, needs to be set at the project level. | 4715 # and therefore SYMROOT, needs to be set at the project level. |
4716 'SYMROOT': '<(DEPTH)/xcodebuild', | 4716 'SYMROOT': '<(DEPTH)/xcodebuild', |
4717 }, | 4717 }, |
4718 } | 4718 } |
OLD | NEW |