Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: build/common.gypi

Issue 9536023: Revert 124228 - Revert 119423 - Revert 119306 - Turn web intents build flag on. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1025/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/content_settings/host_content_settings_map.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort 200 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort
201 'order_text_section%' : "", 201 'order_text_section%' : "",
202 202
203 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared 203 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
204 # libraries on linux x86-64 and arm, plus ASLR. 204 # libraries on linux x86-64 and arm, plus ASLR.
205 'linux_fpic%': 1, 205 'linux_fpic%': 1,
206 206
207 # Enable navigator.registerProtocolHandler and supporting UI. 207 # Enable navigator.registerProtocolHandler and supporting UI.
208 'enable_register_protocol_handler%': 1, 208 'enable_register_protocol_handler%': 1,
209 209
210 # Enable Web Intents and supporting UI. 210 # Enable Web Intents support in WebKit, dispatching of intents,
211 'enable_web_intents%': 0, 211 # and extensions Web Intents support.
212 'enable_web_intents%': 1,
213
214 # Enable Web Intents web content registration via HTML element
215 # and WebUI managing such registrations.
216 'enable_web_intents_tag%': 0,
212 217
213 # Webrtc compilation is enabled by default. Set to 0 to disable. 218 # Webrtc compilation is enabled by default. Set to 0 to disable.
214 'enable_webrtc%': 1, 219 'enable_webrtc%': 1,
215 220
216 # PPAPI by default does not support plugins making calls off the main 221 # PPAPI by default does not support plugins making calls off the main
217 # thread. Set to 1 to turn on experimental support for out-of-process 222 # thread. Set to 1 to turn on experimental support for out-of-process
218 # plugins to make call of the main thread. 223 # plugins to make call of the main thread.
219 'enable_pepper_threading%': 0, 224 'enable_pepper_threading%': 0,
220 225
221 # XInput2 multitouch support is disabled by default (use_xi2_mt=0). 226 # XInput2 multitouch support is disabled by default (use_xi2_mt=0).
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 'p2p_apis%': '<(p2p_apis)', 425 'p2p_apis%': '<(p2p_apis)',
421 'configuration_policy%': '<(configuration_policy)', 426 'configuration_policy%': '<(configuration_policy)',
422 'safe_browsing%': '<(safe_browsing)', 427 'safe_browsing%': '<(safe_browsing)',
423 'input_speech%': '<(input_speech)', 428 'input_speech%': '<(input_speech)',
424 'notifications%': '<(notifications)', 429 'notifications%': '<(notifications)',
425 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 430 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
426 'asan%': '<(asan)', 431 'asan%': '<(asan)',
427 'order_text_section%': '<(order_text_section)', 432 'order_text_section%': '<(order_text_section)',
428 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)', 433 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)',
429 'enable_web_intents%': '<(enable_web_intents)', 434 'enable_web_intents%': '<(enable_web_intents)',
435 'enable_web_intents_tag%': '<(enable_web_intents_tag)',
430 'enable_plugin_installation%': '<(enable_plugin_installation)', 436 'enable_plugin_installation%': '<(enable_plugin_installation)',
431 'use_canvas_skia_skia%': '<(use_canvas_skia_skia)', 437 'use_canvas_skia_skia%': '<(use_canvas_skia_skia)',
432 # Whether to build for Wayland display server 438 # Whether to build for Wayland display server
433 'use_wayland%': 0, 439 'use_wayland%': 0,
434 440
435 # Use system yasm instead of bundled one. 441 # Use system yasm instead of bundled one.
436 'use_system_yasm%': 0, 442 'use_system_yasm%': 0,
437 443
438 # Default to enabled PIE; this is important for ASLR but we need to be 444 # Default to enabled PIE; this is important for ASLR but we need to be
439 # able to turn it off for remote debugging on Chromium OS 445 # able to turn it off for remote debugging on Chromium OS
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 ['use_virtual_keyboard==1 and chromeos==1', { 900 ['use_virtual_keyboard==1 and chromeos==1', {
895 'use_ibus%': 1, 901 'use_ibus%': 1,
896 }, { 902 }, {
897 'use_ibus%': 0, 903 'use_ibus%': 0,
898 }], 904 }],
899 905
900 ['enable_register_protocol_handler==1', { 906 ['enable_register_protocol_handler==1', {
901 'grit_defines': ['-D', 'enable_register_protocol_handler'], 907 'grit_defines': ['-D', 'enable_register_protocol_handler'],
902 }], 908 }],
903 909
904 ['enable_web_intents==1', { 910 ['enable_web_intents_tag==1', {
905 'grit_defines': ['-D', 'enable_web_intents'], 911 'grit_defines': ['-D', 'enable_web_intents_tag'],
906 }], 912 }],
907 913
908 ['asan==1', { 914 ['asan==1', {
909 'clang%': 1, 915 'clang%': 1,
910 # Do not use Chrome plugins for Clang. The Clang version in 916 # Do not use Chrome plugins for Clang. The Clang version in
911 # third_party/asan may be different from the default one. 917 # third_party/asan may be different from the default one.
912 'clang_use_chrome_plugins%': 0, 918 'clang_use_chrome_plugins%': 0,
913 }], 919 }],
914 ], 920 ],
915 # List of default apps to install in new profiles. The first list contains 921 # List of default apps to install in new profiles. The first list contains
(...skipping 1819 matching lines...) Expand 10 before | Expand all | Expand 10 after
2735 # settings in target dicts. SYMROOT is a special case, because many other 2741 # settings in target dicts. SYMROOT is a special case, because many other
2736 # Xcode variables depend on it, including variables such as 2742 # Xcode variables depend on it, including variables such as
2737 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2738 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2739 # files to appear (when present) in the UI as actual files and not red 2745 # files to appear (when present) in the UI as actual files and not red
2740 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2741 # and therefore SYMROOT, needs to be set at the project level. 2747 # and therefore SYMROOT, needs to be set at the project level.
2742 'SYMROOT': '<(DEPTH)/xcodebuild', 2748 'SYMROOT': '<(DEPTH)/xcodebuild',
2743 }, 2749 },
2744 } 2750 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/content_settings/host_content_settings_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698