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 language detection. | 314 # Enable language detection. |
315 'enable_language_detection%': 1, | 315 'enable_language_detection%': 1, |
316 | 316 |
317 # Enable printing support and UI. | 317 # Enable printing support and UI. |
318 'enable_printing%': 1, | 318 'enable_printing%': 1, |
319 | 319 |
320 # Webrtc compilation is enabled by default. Set to 0 to disable. | 320 # Webrtc compilation is enabled by default. Set to 0 to disable. |
321 'enable_webrtc%': 1, | 321 'enable_webrtc%': 1, |
322 | 322 |
| 323 # PPAPI by default does not support plugins making calls off the main |
| 324 # thread. Set to 1 to turn on experimental support for out-of-process |
| 325 # plugins to make call of the main thread. |
| 326 'enable_pepper_threading%': 1, |
| 327 |
323 # Enables use of the session service, which is enabled by default. | 328 # Enables use of the session service, which is enabled by default. |
324 # Support for disabling depends on the platform. | 329 # Support for disabling depends on the platform. |
325 'enable_session_service%': 1, | 330 'enable_session_service%': 1, |
326 | 331 |
327 # Enables theme support, which is enabled by default. Support for | 332 # Enables theme support, which is enabled by default. Support for |
328 # disabling depends on the platform. | 333 # disabling depends on the platform. |
329 'enable_themes%': 1, | 334 'enable_themes%': 1, |
330 | 335 |
331 # Enables autofill dialog and associated features; disabled by default. | 336 # Enables autofill dialog and associated features; disabled by default. |
332 'enable_autofill_dialog%' : 0, | 337 'enable_autofill_dialog%' : 0, |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'use_ash%': '<(use_ash)', | 665 'use_ash%': '<(use_ash)', |
661 'use_openssl%': '<(use_openssl)', | 666 'use_openssl%': '<(use_openssl)', |
662 'use_nss%': '<(use_nss)', | 667 'use_nss%': '<(use_nss)', |
663 'os_bsd%': '<(os_bsd)', | 668 'os_bsd%': '<(os_bsd)', |
664 'os_posix%': '<(os_posix)', | 669 'os_posix%': '<(os_posix)', |
665 'use_glib%': '<(use_glib)', | 670 'use_glib%': '<(use_glib)', |
666 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', | 671 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', |
667 'use_x11%': '<(use_x11)', | 672 'use_x11%': '<(use_x11)', |
668 'use_gnome_keyring%': '<(use_gnome_keyring)', | 673 'use_gnome_keyring%': '<(use_gnome_keyring)', |
669 'linux_fpic%': '<(linux_fpic)', | 674 'linux_fpic%': '<(linux_fpic)', |
| 675 'enable_pepper_threading%': '<(enable_pepper_threading)', |
670 'chromeos%': '<(chromeos)', | 676 'chromeos%': '<(chromeos)', |
671 'enable_viewport%': '<(enable_viewport)', | 677 'enable_viewport%': '<(enable_viewport)', |
672 'enable_hidpi%': '<(enable_hidpi)', | 678 'enable_hidpi%': '<(enable_hidpi)', |
673 'enable_touch_ui%': '<(enable_touch_ui)', | 679 'enable_touch_ui%': '<(enable_touch_ui)', |
674 'use_xi2_mt%':'<(use_xi2_mt)', | 680 'use_xi2_mt%':'<(use_xi2_mt)', |
675 'file_manager_extension%': '<(file_manager_extension)', | 681 'file_manager_extension%': '<(file_manager_extension)', |
676 'image_loader_extension%': '<(image_loader_extension)', | 682 'image_loader_extension%': '<(image_loader_extension)', |
677 'inside_chromium_build%': '<(inside_chromium_build)', | 683 'inside_chromium_build%': '<(inside_chromium_build)', |
678 'fastbuild%': '<(fastbuild)', | 684 'fastbuild%': '<(fastbuild)', |
679 'dcheck_always_on%': '<(dcheck_always_on)', | 685 'dcheck_always_on%': '<(dcheck_always_on)', |
(...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 }], | 1753 }], |
1748 ['remoting==1', { | 1754 ['remoting==1', { |
1749 'defines': ['ENABLE_REMOTING=1'], | 1755 'defines': ['ENABLE_REMOTING=1'], |
1750 }], | 1756 }], |
1751 ['enable_webrtc==1', { | 1757 ['enable_webrtc==1', { |
1752 'defines': ['ENABLE_WEBRTC=1'], | 1758 'defines': ['ENABLE_WEBRTC=1'], |
1753 }], | 1759 }], |
1754 ['proprietary_codecs==1', { | 1760 ['proprietary_codecs==1', { |
1755 'defines': ['USE_PROPRIETARY_CODECS'], | 1761 'defines': ['USE_PROPRIETARY_CODECS'], |
1756 }], | 1762 }], |
| 1763 ['enable_pepper_threading==1', { |
| 1764 'defines': ['ENABLE_PEPPER_THREADING'], |
| 1765 }], |
1757 ['enable_viewport==1', { | 1766 ['enable_viewport==1', { |
1758 'defines': ['ENABLE_VIEWPORT'], | 1767 'defines': ['ENABLE_VIEWPORT'], |
1759 }], | 1768 }], |
1760 ['configuration_policy==1', { | 1769 ['configuration_policy==1', { |
1761 'defines': ['ENABLE_CONFIGURATION_POLICY'], | 1770 'defines': ['ENABLE_CONFIGURATION_POLICY'], |
1762 }], | 1771 }], |
1763 ['input_speech==1', { | 1772 ['input_speech==1', { |
1764 'defines': ['ENABLE_INPUT_SPEECH'], | 1773 'defines': ['ENABLE_INPUT_SPEECH'], |
1765 }], | 1774 }], |
1766 ['notifications==1', { | 1775 ['notifications==1', { |
(...skipping 2341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4108 # settings in target dicts. SYMROOT is a special case, because many other | 4117 # settings in target dicts. SYMROOT is a special case, because many other |
4109 # Xcode variables depend on it, including variables such as | 4118 # Xcode variables depend on it, including variables such as |
4110 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4119 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4111 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4120 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4112 # files to appear (when present) in the UI as actual files and not red | 4121 # files to appear (when present) in the UI as actual files and not red |
4113 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4122 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4114 # and therefore SYMROOT, needs to be set at the project level. | 4123 # and therefore SYMROOT, needs to be set at the project level. |
4115 'SYMROOT': '<(DEPTH)/xcodebuild', | 4124 'SYMROOT': '<(DEPTH)/xcodebuild', |
4116 }, | 4125 }, |
4117 } | 4126 } |
OLD | NEW |