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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 # is stored in resources.pak. It is still possible to load JS files | 661 # is stored in resources.pak. It is still possible to load JS files |
662 # from disk by passing --debug-devtools cmdline switch. | 662 # from disk by passing --debug-devtools cmdline switch. |
663 'debug_devtools%': 0, | 663 'debug_devtools%': 0, |
664 | 664 |
665 # Point to ICU directory. | 665 # Point to ICU directory. |
666 'icu_src_dir': '../third_party/icu', | 666 'icu_src_dir': '../third_party/icu', |
667 | 667 |
668 # The Java Bridge is not compiled in by default. | 668 # The Java Bridge is not compiled in by default. |
669 'java_bridge%': 0, | 669 'java_bridge%': 0, |
670 | 670 |
671 # TODO(dpranke): This determines whether we should attempt to build DRT | |
672 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This | |
673 # flag should only be needed temporarily. See | |
674 # https://bugs.webkit.org/show_bug.cgi?id=68463. | |
675 'build_webkit_exes_from_webkit_gyp%': 0, | |
676 | |
677 # This flag is only used when disable_nacl==0 and disables all those | 671 # This flag is only used when disable_nacl==0 and disables all those |
678 # subcomponents which would require the installation of a native_client | 672 # subcomponents which would require the installation of a native_client |
679 # untrusted toolchain. | 673 # untrusted toolchain. |
680 'disable_nacl_untrusted%': 0, | 674 'disable_nacl_untrusted%': 0, |
681 | 675 |
682 # Disable Dart by default. | 676 # Disable Dart by default. |
683 'enable_dart%': 0, | 677 'enable_dart%': 0, |
684 | 678 |
685 # (Most) Chrome OS hardware reports ACPI power button releases correctly. | 679 # (Most) Chrome OS hardware reports ACPI power button releases correctly. |
686 # Standard hardware reports releases immediately after presses. | 680 # Standard hardware reports releases immediately after presses. |
(...skipping 2156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2843 # settings in target dicts. SYMROOT is a special case, because many other | 2837 # settings in target dicts. SYMROOT is a special case, because many other |
2844 # Xcode variables depend on it, including variables such as | 2838 # Xcode variables depend on it, including variables such as |
2845 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2846 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2847 # files to appear (when present) in the UI as actual files and not red | 2841 # files to appear (when present) in the UI as actual files and not red |
2848 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2849 # and therefore SYMROOT, needs to be set at the project level. | 2843 # and therefore SYMROOT, needs to be set at the project level. |
2850 'SYMROOT': '<(DEPTH)/xcodebuild', | 2844 'SYMROOT': '<(DEPTH)/xcodebuild', |
2851 }, | 2845 }, |
2852 } | 2846 } |
OLD | NEW |