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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 'cld_version%': 1, | 797 'cld_version%': 1, |
798 'enable_printing%': 0, | 798 'enable_printing%': 0, |
799 'enable_session_service%': 0, | 799 'enable_session_service%': 0, |
800 'enable_themes%': 0, | 800 'enable_themes%': 0, |
801 'enable_webrtc%': 0, | 801 'enable_webrtc%': 0, |
802 'notifications%': 0, | 802 'notifications%': 0, |
803 'remoting%': 0, | 803 'remoting%': 0, |
804 'safe_browsing%': 0, | 804 'safe_browsing%': 0, |
805 'enable_managed_users%': 0, | 805 'enable_managed_users%': 0, |
806 'enable_task_manager%': 0, | 806 'enable_task_manager%': 0, |
| 807 'use_system_libcxx%': 1, |
807 }], | 808 }], |
808 | 809 |
809 # Use GPU accelerated cross process image transport by default | 810 # Use GPU accelerated cross process image transport by default |
810 # on linux builds with the Aura window manager | 811 # on linux builds with the Aura window manager |
811 ['use_aura==1 and OS=="linux"', { | 812 ['use_aura==1 and OS=="linux"', { |
812 'ui_compositor_image_transport%': 1, | 813 'ui_compositor_image_transport%': 1, |
813 }, { | 814 }, { |
814 'ui_compositor_image_transport%': 0, | 815 'ui_compositor_image_transport%': 0, |
815 }], | 816 }], |
816 | 817 |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1498 # Chrome OS: whether to build ChromeVox from sources in the Chromium | 1499 # Chrome OS: whether to build ChromeVox from sources in the Chromium |
1499 # repository rather than using precompiled JavaScript in | 1500 # repository rather than using precompiled JavaScript in |
1500 # chrome/third_party/chromevox. This is still experimental. | 1501 # chrome/third_party/chromevox. This is still experimental. |
1501 'use_migrated_chromevox%': 1, | 1502 'use_migrated_chromevox%': 1, |
1502 | 1503 |
1503 # Chrome OS: whether to also build the upcoming version of | 1504 # Chrome OS: whether to also build the upcoming version of |
1504 # ChromeVox, which can then be enabled via a command-line switch. | 1505 # ChromeVox, which can then be enabled via a command-line switch. |
1505 'use_chromevox_next%': 0, | 1506 'use_chromevox_next%': 0, |
1506 | 1507 |
1507 'conditions': [ | 1508 'conditions': [ |
1508 # The version of clang shipped upstream does not find C++ headers when | |
1509 # using -stdlib=libc++ so we instead need to use the version of clang | |
1510 # coming with Xcode. | |
1511 ['OS=="ios" and use_system_libcxx==1', { | |
1512 'clang_xcode%': 1, | |
1513 }], | |
1514 # Enable the Syzygy optimization step for the official builds. | 1509 # Enable the Syzygy optimization step for the official builds. |
1515 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { | 1510 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { |
1516 'syzygy_optimize%': 1, | 1511 'syzygy_optimize%': 1, |
1517 }, { | 1512 }, { |
1518 'syzygy_optimize%': 0, | 1513 'syzygy_optimize%': 0, |
1519 }], | 1514 }], |
1520 # Get binutils version so we can enable debug fission if we can. | 1515 # Get binutils version so we can enable debug fission if we can. |
1521 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 1516 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
1522 'conditions': [ | 1517 'conditions': [ |
1523 # compiler_version doesn't work with clang | 1518 # compiler_version doesn't work with clang |
(...skipping 4258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5782 # settings in target dicts. SYMROOT is a special case, because many other | 5777 # settings in target dicts. SYMROOT is a special case, because many other |
5783 # Xcode variables depend on it, including variables such as | 5778 # Xcode variables depend on it, including variables such as |
5784 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5779 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5785 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5780 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5786 # files to appear (when present) in the UI as actual files and not red | 5781 # files to appear (when present) in the UI as actual files and not red |
5787 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5782 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5788 # and therefore SYMROOT, needs to be set at the project level. | 5783 # and therefore SYMROOT, needs to be set at the project level. |
5789 'SYMROOT': '<(DEPTH)/xcodebuild', | 5784 'SYMROOT': '<(DEPTH)/xcodebuild', |
5790 }, | 5785 }, |
5791 } | 5786 } |
OLD | NEW |