OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 # is stored in resources.pak. It is still possible to load JS files | 607 # is stored in resources.pak. It is still possible to load JS files |
608 # from disk by passing --debug-devtools cmdline switch. | 608 # from disk by passing --debug-devtools cmdline switch. |
609 'debug_devtools%': 0, | 609 'debug_devtools%': 0, |
610 | 610 |
611 # Point to ICU directory. | 611 # Point to ICU directory. |
612 'icu_src_dir': '../third_party/icu', | 612 'icu_src_dir': '../third_party/icu', |
613 | 613 |
614 # The Java Bridge is not compiled in by default. | 614 # The Java Bridge is not compiled in by default. |
615 'java_bridge%': 0, | 615 'java_bridge%': 0, |
616 | 616 |
| 617 # TODO(dpranke): This determines whether we should attempt to build DRT |
| 618 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This |
| 619 # flag should only be needed temporarily. See |
| 620 # https://bugs.webkit.org/show_bug.cgi?id=68463. |
| 621 'build_webkit_exes_from_webkit_gyp%': 1, |
| 622 |
617 'conditions': [ | 623 'conditions': [ |
618 # Used to disable Native Client at compile time, for platforms where it | 624 # Used to disable Native Client at compile time, for platforms where it |
619 # isn't supported (ARM) | 625 # isn't supported (ARM) |
620 ['target_arch=="arm"', { | 626 ['target_arch=="arm"', { |
621 'disable_nacl%': 1, | 627 'disable_nacl%': 1, |
622 }, { | 628 }, { |
623 'disable_nacl%': 0, | 629 'disable_nacl%': 0, |
624 }], | 630 }], |
625 ['os_posix==1 and OS!="mac" and OS!="android"', { | 631 ['os_posix==1 and OS!="mac" and OS!="android"', { |
626 # This will set gcc_version to XY if you are running gcc X.Y.*. | 632 # This will set gcc_version to XY if you are running gcc X.Y.*. |
(...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2622 # settings in target dicts. SYMROOT is a special case, because many other | 2628 # settings in target dicts. SYMROOT is a special case, because many other |
2623 # Xcode variables depend on it, including variables such as | 2629 # Xcode variables depend on it, including variables such as |
2624 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2630 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2625 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2631 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2626 # files to appear (when present) in the UI as actual files and not red | 2632 # files to appear (when present) in the UI as actual files and not red |
2627 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2633 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2628 # and therefore SYMROOT, needs to be set at the project level. | 2634 # and therefore SYMROOT, needs to be set at the project level. |
2629 'SYMROOT': '<(DEPTH)/xcodebuild', | 2635 'SYMROOT': '<(DEPTH)/xcodebuild', |
2630 }, | 2636 }, |
2631 } | 2637 } |
OLD | NEW |