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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 | 619 |
620 # TODO(dpranke): This determines whether we should attempt to build DRT | 620 # TODO(dpranke): This determines whether we should attempt to build DRT |
621 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This | 621 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This |
622 # flag should only be needed temporarily. See | 622 # flag should only be needed temporarily. See |
623 # https://bugs.webkit.org/show_bug.cgi?id=68463. | 623 # https://bugs.webkit.org/show_bug.cgi?id=68463. |
624 'build_webkit_exes_from_webkit_gyp%': 1, | 624 'build_webkit_exes_from_webkit_gyp%': 1, |
625 | 625 |
626 'conditions': [ | 626 'conditions': [ |
627 # Used to disable Native Client at compile time, for platforms where it | 627 # Used to disable Native Client at compile time, for platforms where it |
628 # isn't supported (ARM) | 628 # isn't supported (ARM) |
629 ['target_arch=="arm" or chromeos==1', { | 629 ['target_arch=="arm"', { |
630 'disable_nacl%': 1, | 630 'disable_nacl%': 1, |
631 }, { | 631 }, { |
632 'disable_nacl%': 0, | 632 'disable_nacl%': 0, |
633 }], | 633 }], |
634 ['os_posix==1 and OS!="mac" and OS!="android"', { | 634 ['os_posix==1 and OS!="mac" and OS!="android"', { |
635 # This will set gcc_version to XY if you are running gcc X.Y.*. | 635 # This will set gcc_version to XY if you are running gcc X.Y.*. |
636 # This is used to tweak build flags for gcc 4.4. | 636 # This is used to tweak build flags for gcc 4.4. |
637 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 637 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
638 # Figure out the python architecture to decide if we build pyauto. | 638 # Figure out the python architecture to decide if we build pyauto. |
639 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/<
(system_libdir)/libpython<(python_ver).so.1.0)', | 639 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/<
(system_libdir)/libpython<(python_ver).so.1.0)', |
(...skipping 2012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2652 # settings in target dicts. SYMROOT is a special case, because many other | 2652 # settings in target dicts. SYMROOT is a special case, because many other |
2653 # Xcode variables depend on it, including variables such as | 2653 # Xcode variables depend on it, including variables such as |
2654 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2654 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2655 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2655 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2656 # files to appear (when present) in the UI as actual files and not red | 2656 # files to appear (when present) in the UI as actual files and not red |
2657 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2657 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2658 # and therefore SYMROOT, needs to be set at the project level. | 2658 # and therefore SYMROOT, needs to be set at the project level. |
2659 'SYMROOT': '<(DEPTH)/xcodebuild', | 2659 'SYMROOT': '<(DEPTH)/xcodebuild', |
2660 }, | 2660 }, |
2661 } | 2661 } |
OLD | NEW |