| 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 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 | 672 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This |
| 673 # flag should only be needed temporarily. See | 673 # flag should only be needed temporarily. See |
| 674 # https://bugs.webkit.org/show_bug.cgi?id=68463. | 674 # https://bugs.webkit.org/show_bug.cgi?id=68463. |
| 675 'build_webkit_exes_from_webkit_gyp%': 1, | 675 'build_webkit_exes_from_webkit_gyp%': 0, |
| 676 | 676 |
| 677 # This flag is only used when disable_nacl==0 and disables all those | 677 # This flag is only used when disable_nacl==0 and disables all those |
| 678 # subcomponents which would require the installation of a native_client | 678 # subcomponents which would require the installation of a native_client |
| 679 # untrusted toolchain. | 679 # untrusted toolchain. |
| 680 'disable_nacl_untrusted%': 0, | 680 'disable_nacl_untrusted%': 0, |
| 681 | 681 |
| 682 # Disable Dart by default. | 682 # Disable Dart by default. |
| 683 'enable_dart%': 0, | 683 'enable_dart%': 0, |
| 684 | 684 |
| 685 # (Most) Chrome OS hardware reports ACPI power button releases correctly. | 685 # (Most) Chrome OS hardware reports ACPI power button releases correctly. |
| (...skipping 2157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2843 # settings in target dicts. SYMROOT is a special case, because many other | 2843 # settings in target dicts. SYMROOT is a special case, because many other |
| 2844 # Xcode variables depend on it, including variables such as | 2844 # Xcode variables depend on it, including variables such as |
| 2845 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2845 # 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 | 2846 # 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 | 2847 # 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, | 2848 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2849 # and therefore SYMROOT, needs to be set at the project level. | 2849 # and therefore SYMROOT, needs to be set at the project level. |
| 2850 'SYMROOT': '<(DEPTH)/xcodebuild', | 2850 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2851 }, | 2851 }, |
| 2852 } | 2852 } |
| OLD | NEW |