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

Side by Side Diff: build/common.gypi

Issue 10031002: Allow extension APIs to be compiled out. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unneeded resources Created 8 years, 8 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
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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 # Whether one-click signin is enabled or not. 211 # Whether one-click signin is enabled or not.
212 'enable_one_click_signin%': 0, 212 'enable_one_click_signin%': 0,
213 213
214 # Enable navigator.registerProtocolHandler and supporting UI. 214 # Enable navigator.registerProtocolHandler and supporting UI.
215 'enable_register_protocol_handler%': 1, 215 'enable_register_protocol_handler%': 1,
216 216
217 # Enable Web Intents support in WebKit, dispatching of intents, 217 # Enable Web Intents support in WebKit, dispatching of intents,
218 # and extensions Web Intents support. 218 # and extensions Web Intents support.
219 'enable_web_intents%': 1, 219 'enable_web_intents%': 1,
220 220
221 # Enable Chrome browser extensions
222 'enable_extensions%': 1,
223
221 # Enable Web Intents web content registration via HTML element 224 # Enable Web Intents web content registration via HTML element
222 # and WebUI managing such registrations. 225 # and WebUI managing such registrations.
223 'enable_web_intents_tag%': 0, 226 'enable_web_intents_tag%': 0,
224 227
225 # Webrtc compilation is enabled by default. Set to 0 to disable. 228 # Webrtc compilation is enabled by default. Set to 0 to disable.
226 'enable_webrtc%': 1, 229 'enable_webrtc%': 1,
227 230
228 # PPAPI by default does not support plugins making calls off the main 231 # PPAPI by default does not support plugins making calls off the main
229 # thread. Set to 1 to turn on experimental support for out-of-process 232 # thread. Set to 1 to turn on experimental support for out-of-process
230 # plugins to make call of the main thread. 233 # plugins to make call of the main thread.
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'chromium_win_pch%': '<(chromium_win_pch)', 499 'chromium_win_pch%': '<(chromium_win_pch)',
497 'p2p_apis%': '<(p2p_apis)', 500 'p2p_apis%': '<(p2p_apis)',
498 'configuration_policy%': '<(configuration_policy)', 501 'configuration_policy%': '<(configuration_policy)',
499 'safe_browsing%': '<(safe_browsing)', 502 'safe_browsing%': '<(safe_browsing)',
500 'input_speech%': '<(input_speech)', 503 'input_speech%': '<(input_speech)',
501 'notifications%': '<(notifications)', 504 'notifications%': '<(notifications)',
502 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 505 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
503 'asan%': '<(asan)', 506 'asan%': '<(asan)',
504 'order_text_section%': '<(order_text_section)', 507 'order_text_section%': '<(order_text_section)',
505 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)', 508 'enable_register_protocol_handler%': '<(enable_register_protocol_handler)',
509 'enable_extensions%': '<(enable_extensions)',
506 'enable_web_intents%': '<(enable_web_intents)', 510 'enable_web_intents%': '<(enable_web_intents)',
507 'enable_web_intents_tag%': '<(enable_web_intents_tag)', 511 'enable_web_intents_tag%': '<(enable_web_intents_tag)',
508 'enable_plugin_installation%': '<(enable_plugin_installation)', 512 'enable_plugin_installation%': '<(enable_plugin_installation)',
509 'enable_protector_service%': '<(enable_protector_service)', 513 'enable_protector_service%': '<(enable_protector_service)',
510 'enable_session_service%': '<(enable_session_service)', 514 'enable_session_service%': '<(enable_session_service)',
511 'enable_themes%': '<(enable_themes)', 515 'enable_themes%': '<(enable_themes)',
512 'enable_background%': '<(enable_background)', 516 'enable_background%': '<(enable_background)',
513 'linux_use_gold_binary%': '<(linux_use_gold_binary)', 517 'linux_use_gold_binary%': '<(linux_use_gold_binary)',
514 'linux_use_gold_flags%': '<(linux_use_gold_flags)', 518 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
515 'use_canvas_skia%': '<(use_canvas_skia)', 519 'use_canvas_skia%': '<(use_canvas_skia)',
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 792
789 # Always uses openssl. 793 # Always uses openssl.
790 'use_openssl%': 1, 794 'use_openssl%': 1,
791 795
792 'proprietary_codecs%': '<(proprietary_codecs)', 796 'proprietary_codecs%': '<(proprietary_codecs)',
793 'enable_task_manager%': 0, 797 'enable_task_manager%': 0,
794 'safe_browsing%': 0, 798 'safe_browsing%': 0,
795 'configuration_policy%': 0, 799 'configuration_policy%': 0,
796 'input_speech%': 0, 800 'input_speech%': 0,
797 'enable_web_intents%': 0, 801 'enable_web_intents%': 0,
802 'enable_extensions%': 0,
798 'java_bridge%': 1, 803 'java_bridge%': 1,
799 # Android does not support themes. 804 # Android does not support themes.
800 'enable_themes%': 0, 805 'enable_themes%': 0,
801 'enable_background%': 0, 806 'enable_background%': 0,
802 807
803 # Sessions are store separately in the Java side. 808 # Sessions are store separately in the Java side.
804 'enable_session_service%': 0, 809 'enable_session_service%': 0,
805 810
806 # Set to 1 once we have a notification system for Android. 811 # Set to 1 once we have a notification system for Android.
807 # http://crbug.com/115320 812 # http://crbug.com/115320
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 ['enable_task_manager==1', { 1368 ['enable_task_manager==1', {
1364 'defines': [ 1369 'defines': [
1365 'ENABLE_TASK_MANAGER=1', 1370 'ENABLE_TASK_MANAGER=1',
1366 ], 1371 ],
1367 }], 1372 }],
1368 ['enable_web_intents==1', { 1373 ['enable_web_intents==1', {
1369 'defines': [ 1374 'defines': [
1370 'ENABLE_WEB_INTENTS=1', 1375 'ENABLE_WEB_INTENTS=1',
1371 ], 1376 ],
1372 }], 1377 }],
1378 ['enable_extensions==1', {
1379 'defines': [
1380 'ENABLE_EXTENSIONS=1',
1381 ],
1382 }],
1373 ['OS=="win" and branding=="Chrome"', { 1383 ['OS=="win" and branding=="Chrome"', {
1374 'defines': ['ENABLE_SWIFTSHADER'], 1384 'defines': ['ENABLE_SWIFTSHADER'],
1375 }], 1385 }],
1376 ['enable_dart==1', { 1386 ['enable_dart==1', {
1377 'defines': ['WEBKIT_USING_DART=1'], 1387 'defines': ['WEBKIT_USING_DART=1'],
1378 }], 1388 }],
1379 ['enable_plugin_installation==1', { 1389 ['enable_plugin_installation==1', {
1380 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'], 1390 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
1381 }], 1391 }],
1382 ['enable_protector_service==1', { 1392 ['enable_protector_service==1', {
(...skipping 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after
2973 # settings in target dicts. SYMROOT is a special case, because many other 2983 # settings in target dicts. SYMROOT is a special case, because many other
2974 # Xcode variables depend on it, including variables such as 2984 # Xcode variables depend on it, including variables such as
2975 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2985 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2976 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2986 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2977 # files to appear (when present) in the UI as actual files and not red 2987 # files to appear (when present) in the UI as actual files and not red
2978 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2988 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2979 # and therefore SYMROOT, needs to be set at the project level. 2989 # and therefore SYMROOT, needs to be set at the project level.
2980 'SYMROOT': '<(DEPTH)/xcodebuild', 2990 'SYMROOT': '<(DEPTH)/xcodebuild',
2981 }, 2991 },
2982 } 2992 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/app_notify_channel_ui.cc » ('j') | chrome/chrome_browser_extensions.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698