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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 | 313 |
314 # Enable Google Now. | 314 # Enable Google Now. |
315 'enable_google_now%': 1, | 315 'enable_google_now%': 1, |
316 | 316 |
317 # Enable language detection. | 317 # Enable language detection. |
318 'enable_language_detection%': 1, | 318 'enable_language_detection%': 1, |
319 | 319 |
320 # Enable printing support and UI. | 320 # Enable printing support and UI. |
321 'enable_printing%': 1, | 321 'enable_printing%': 1, |
322 | 322 |
323 # Enable Web Intents web content registration via HTML element | |
324 # and WebUI managing such registrations. | |
325 'enable_web_intents_tag%': 0, | |
326 | |
327 # Webrtc compilation is enabled by default. Set to 0 to disable. | 323 # Webrtc compilation is enabled by default. Set to 0 to disable. |
328 'enable_webrtc%': 1, | 324 'enable_webrtc%': 1, |
329 | 325 |
330 # PPAPI by default does not support plugins making calls off the main | 326 # PPAPI by default does not support plugins making calls off the main |
331 # thread. Set to 1 to turn on experimental support for out-of-process | 327 # thread. Set to 1 to turn on experimental support for out-of-process |
332 # plugins to make call of the main thread. | 328 # plugins to make call of the main thread. |
333 'enable_pepper_threading%': 1, | 329 'enable_pepper_threading%': 1, |
334 | 330 |
335 # Enables use of the session service, which is enabled by default. | 331 # Enables use of the session service, which is enabled by default. |
336 # Support for disabling depends on the platform. | 332 # Support for disabling depends on the platform. |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', | 714 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', |
719 'mac_want_real_dsym%': '<(mac_want_real_dsym)', | 715 'mac_want_real_dsym%': '<(mac_want_real_dsym)', |
720 'asan%': '<(asan)', | 716 'asan%': '<(asan)', |
721 'msan%': '<(msan)', | 717 'msan%': '<(msan)', |
722 'tsan%': '<(tsan)', | 718 'tsan%': '<(tsan)', |
723 'tsan_blacklist%': '<(tsan_blacklist)', | 719 'tsan_blacklist%': '<(tsan_blacklist)', |
724 'clang_type_profiler%': '<(clang_type_profiler)', | 720 'clang_type_profiler%': '<(clang_type_profiler)', |
725 'order_profiling%': '<(order_profiling)', | 721 'order_profiling%': '<(order_profiling)', |
726 'order_text_section%': '<(order_text_section)', | 722 'order_text_section%': '<(order_text_section)', |
727 'enable_extensions%': '<(enable_extensions)', | 723 'enable_extensions%': '<(enable_extensions)', |
728 'enable_web_intents_tag%': '<(enable_web_intents_tag)', | |
729 'enable_plugin_installation%': '<(enable_plugin_installation)', | 724 'enable_plugin_installation%': '<(enable_plugin_installation)', |
730 'enable_plugins%': '<(enable_plugins)', | 725 'enable_plugins%': '<(enable_plugins)', |
731 'enable_session_service%': '<(enable_session_service)', | 726 'enable_session_service%': '<(enable_session_service)', |
732 'enable_themes%': '<(enable_themes)', | 727 'enable_themes%': '<(enable_themes)', |
733 'enable_autofill_dialog%': '<(enable_autofill_dialog)', | 728 'enable_autofill_dialog%': '<(enable_autofill_dialog)', |
734 'use_oem_wallpaper%': '<(use_oem_wallpaper)', | 729 'use_oem_wallpaper%': '<(use_oem_wallpaper)', |
735 'enable_background%': '<(enable_background)', | 730 'enable_background%': '<(enable_background)', |
736 'linux_use_gold_binary%': '<(linux_use_gold_binary)', | 731 'linux_use_gold_binary%': '<(linux_use_gold_binary)', |
737 'linux_use_gold_flags%': '<(linux_use_gold_flags)', | 732 'linux_use_gold_flags%': '<(linux_use_gold_flags)', |
738 'linux_use_libgps%': '<(linux_use_libgps)', | 733 'linux_use_libgps%': '<(linux_use_libgps)', |
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1453 }], | 1448 }], |
1454 ['enable_google_now==1', { | 1449 ['enable_google_now==1', { |
1455 'grit_defines': ['-D', 'enable_google_now'], | 1450 'grit_defines': ['-D', 'enable_google_now'], |
1456 }], | 1451 }], |
1457 ['clang_use_chrome_plugins==1 and OS!="win"', { | 1452 ['clang_use_chrome_plugins==1 and OS!="win"', { |
1458 'clang_chrome_plugins_flags': [ | 1453 'clang_chrome_plugins_flags': [ |
1459 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' | 1454 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' |
1460 ], | 1455 ], |
1461 }], | 1456 }], |
1462 | 1457 |
1463 ['enable_web_intents_tag==1', { | |
1464 'grit_defines': ['-D', 'enable_web_intents_tag'], | |
1465 }], | |
1466 | |
1467 ['asan==1 and OS!="win"', { | 1458 ['asan==1 and OS!="win"', { |
1468 'clang%': 1, | 1459 'clang%': 1, |
1469 }], | 1460 }], |
1470 ['asan==1 and OS=="mac"', { | 1461 ['asan==1 and OS=="mac"', { |
1471 # See http://crbug.com/145503. | 1462 # See http://crbug.com/145503. |
1472 'component': "static_library", | 1463 'component': "static_library", |
1473 # TODO(glider): we do not strip ASan binaries until the dynamic ASan | 1464 # TODO(glider): we do not strip ASan binaries until the dynamic ASan |
1474 # runtime is fully adopted. See http://crbug.com/170629. | 1465 # runtime is fully adopted. See http://crbug.com/170629. |
1475 'mac_strip_release': 0, | 1466 'mac_strip_release': 0, |
1476 }], | 1467 }], |
(...skipping 2648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4125 # settings in target dicts. SYMROOT is a special case, because many other | 4116 # settings in target dicts. SYMROOT is a special case, because many other |
4126 # Xcode variables depend on it, including variables such as | 4117 # Xcode variables depend on it, including variables such as |
4127 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4118 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4128 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4119 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4129 # files to appear (when present) in the UI as actual files and not red | 4120 # files to appear (when present) in the UI as actual files and not red |
4130 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4121 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4131 # and therefore SYMROOT, needs to be set at the project level. | 4122 # and therefore SYMROOT, needs to be set at the project level. |
4132 'SYMROOT': '<(DEPTH)/xcodebuild', | 4123 'SYMROOT': '<(DEPTH)/xcodebuild', |
4133 }, | 4124 }, |
4134 } | 4125 } |
OLD | NEW |