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 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 'enable_session_service%': 0, | 869 'enable_session_service%': 0, |
870 'enable_spellcheck%': 0, | 870 'enable_spellcheck%': 0, |
871 'enable_themes%': 0, | 871 'enable_themes%': 0, |
872 'enable_webrtc%': 0, | 872 'enable_webrtc%': 0, |
873 'notifications%': 0, | 873 'notifications%': 0, |
874 'remoting%': 0, | 874 'remoting%': 0, |
875 'safe_browsing%': 0, | 875 'safe_browsing%': 0, |
876 'enable_supervised_users%': 0, | 876 'enable_supervised_users%': 0, |
877 'enable_task_manager%': 0, | 877 'enable_task_manager%': 0, |
878 'use_system_libcxx%': 1, | 878 'use_system_libcxx%': 1, |
| 879 'enable_media_router%': 0, |
879 }], | 880 }], |
880 | 881 |
881 # Use GPU accelerated cross process image transport by default | 882 # Use GPU accelerated cross process image transport by default |
882 # on linux builds with the Aura window manager | 883 # on linux builds with the Aura window manager |
883 ['use_aura==1 and OS=="linux"', { | 884 ['use_aura==1 and OS=="linux"', { |
884 'ui_compositor_image_transport%': 1, | 885 'ui_compositor_image_transport%': 1, |
885 }, { | 886 }, { |
886 'ui_compositor_image_transport%': 0, | 887 'ui_compositor_image_transport%': 0, |
887 }], | 888 }], |
888 | 889 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 # gcc >= 4.8 or clang. | 941 # gcc >= 4.8 or clang. |
941 # http://gcc.gnu.org/wiki/DebugFission | 942 # http://gcc.gnu.org/wiki/DebugFission |
942 ['OS=="linux" and target_arch=="x64"', { | 943 ['OS=="linux" and target_arch=="x64"', { |
943 'linux_use_debug_fission%': 1, | 944 'linux_use_debug_fission%': 1, |
944 }, { | 945 }, { |
945 'linux_use_debug_fission%': 0, | 946 'linux_use_debug_fission%': 0, |
946 }], | 947 }], |
947 | 948 |
948 ['OS=="android" or OS=="ios"', { | 949 ['OS=="android" or OS=="ios"', { |
949 'enable_captive_portal_detection%': 0, | 950 'enable_captive_portal_detection%': 0, |
950 'enable_media_router%': 0, | |
951 }, { | 951 }, { |
952 'enable_captive_portal_detection%': 1, | 952 'enable_captive_portal_detection%': 1, |
953 'enable_media_router%': 1, | |
954 }], | 953 }], |
955 | 954 |
956 # Enable Skia UI text drawing incrementally on different platforms. | 955 # Enable Skia UI text drawing incrementally on different platforms. |
957 # http://crbug.com/105550 | 956 # http://crbug.com/105550 |
958 # | 957 # |
959 # On Aura, this allows per-tile painting to be used in the browser | 958 # On Aura, this allows per-tile painting to be used in the browser |
960 # compositor. | 959 # compositor. |
961 ['OS!="android" and OS!="ios"', { | 960 ['OS!="android" and OS!="ios"', { |
962 'use_canvas_skia%': 1, | 961 'use_canvas_skia%': 1, |
963 }], | 962 }], |
(...skipping 5284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6248 # settings in target dicts. SYMROOT is a special case, because many other | 6247 # settings in target dicts. SYMROOT is a special case, because many other |
6249 # Xcode variables depend on it, including variables such as | 6248 # Xcode variables depend on it, including variables such as |
6250 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6249 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6251 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6250 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6252 # files to appear (when present) in the UI as actual files and not red | 6251 # files to appear (when present) in the UI as actual files and not red |
6253 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6252 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6254 # and therefore SYMROOT, needs to be set at the project level. | 6253 # and therefore SYMROOT, needs to be set at the project level. |
6255 'SYMROOT': '<(DEPTH)/xcodebuild', | 6254 'SYMROOT': '<(DEPTH)/xcodebuild', |
6256 }, | 6255 }, |
6257 } | 6256 } |
OLD | NEW |