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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 # Has no effect if 'clang' is not set as well. | 178 # Has no effect if 'clang' is not set as well. |
179 'clang_use_chrome_plugins%': 0, | 179 'clang_use_chrome_plugins%': 0, |
180 | 180 |
181 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared | 181 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared |
182 # libraries on linux x86-64 and arm, plus ASLR. | 182 # libraries on linux x86-64 and arm, plus ASLR. |
183 'linux_fpic%': 1, | 183 'linux_fpic%': 1, |
184 | 184 |
185 # Enable navigator.registerProtocolHandler and supporting UI. | 185 # Enable navigator.registerProtocolHandler and supporting UI. |
186 'enable_register_protocol_handler%': 1, | 186 'enable_register_protocol_handler%': 1, |
187 | 187 |
| 188 # Enable Web Intents and supporting UI. |
| 189 'enable_web_intents%': 0, |
| 190 |
188 # Smooth scrolling is disabled by default. | 191 # Smooth scrolling is disabled by default. |
189 'enable_smooth_scrolling%': 0, | 192 'enable_smooth_scrolling%': 0, |
190 | 193 |
191 # Webrtc compilation is enabled by default. Set to 0 to disable. | 194 # Webrtc compilation is enabled by default. Set to 0 to disable. |
192 'enable_webrtc%': 1, | 195 'enable_webrtc%': 1, |
193 | 196 |
194 'conditions': [ | 197 'conditions': [ |
195 # Use Skia as WebKit renderer on Mac | 198 # Use Skia as WebKit renderer on Mac |
196 ['OS=="mac"', { | 199 ['OS=="mac"', { |
197 'use_skia%': 0, | 200 'use_skia%': 0, |
(...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1891 # settings in target dicts. SYMROOT is a special case, because many other | 1894 # settings in target dicts. SYMROOT is a special case, because many other |
1892 # Xcode variables depend on it, including variables such as | 1895 # Xcode variables depend on it, including variables such as |
1893 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1896 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1894 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1897 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1895 # files to appear (when present) in the UI as actual files and not red | 1898 # files to appear (when present) in the UI as actual files and not red |
1896 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1899 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1897 # and therefore SYMROOT, needs to be set at the project level. | 1900 # and therefore SYMROOT, needs to be set at the project level. |
1898 'SYMROOT': '<(DEPTH)/xcodebuild', | 1901 'SYMROOT': '<(DEPTH)/xcodebuild', |
1899 }, | 1902 }, |
1900 } | 1903 } |
OLD | NEW |