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

Side by Side Diff: build/common.gypi

Issue 12378050: PPAPI: Remove threading options; it's always on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PDFResource unit test Created 7 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
« no previous file with comments | « no previous file | content/browser/ppapi_plugin_process_host.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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 315
316 # Enable language detection. 316 # Enable language detection.
317 'enable_language_detection%': 1, 317 'enable_language_detection%': 1,
318 318
319 # Enable printing support and UI. 319 # Enable printing support and UI.
320 'enable_printing%': 1, 320 'enable_printing%': 1,
321 321
322 # Webrtc compilation is enabled by default. Set to 0 to disable. 322 # Webrtc compilation is enabled by default. Set to 0 to disable.
323 'enable_webrtc%': 1, 323 'enable_webrtc%': 1,
324 324
325 # PPAPI by default does not support plugins making calls off the main
326 # thread. Set to 1 to turn on experimental support for out-of-process
327 # plugins to make call of the main thread.
328 'enable_pepper_threading%': 1,
329
330 # Enables use of the session service, which is enabled by default. 325 # Enables use of the session service, which is enabled by default.
331 # Support for disabling depends on the platform. 326 # Support for disabling depends on the platform.
332 'enable_session_service%': 1, 327 'enable_session_service%': 1,
333 328
334 # Enables theme support, which is enabled by default. Support for 329 # Enables theme support, which is enabled by default. Support for
335 # disabling depends on the platform. 330 # disabling depends on the platform.
336 'enable_themes%': 1, 331 'enable_themes%': 1,
337 332
338 # Enables autofill dialog and associated features; disabled by default. 333 # Enables autofill dialog and associated features; disabled by default.
339 'enable_autofill_dialog%' : 0, 334 'enable_autofill_dialog%' : 0,
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 'use_ash%': '<(use_ash)', 671 'use_ash%': '<(use_ash)',
677 'use_openssl%': '<(use_openssl)', 672 'use_openssl%': '<(use_openssl)',
678 'use_nss%': '<(use_nss)', 673 'use_nss%': '<(use_nss)',
679 'os_bsd%': '<(os_bsd)', 674 'os_bsd%': '<(os_bsd)',
680 'os_posix%': '<(os_posix)', 675 'os_posix%': '<(os_posix)',
681 'use_glib%': '<(use_glib)', 676 'use_glib%': '<(use_glib)',
682 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', 677 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)',
683 'use_x11%': '<(use_x11)', 678 'use_x11%': '<(use_x11)',
684 'use_gnome_keyring%': '<(use_gnome_keyring)', 679 'use_gnome_keyring%': '<(use_gnome_keyring)',
685 'linux_fpic%': '<(linux_fpic)', 680 'linux_fpic%': '<(linux_fpic)',
686 'enable_pepper_threading%': '<(enable_pepper_threading)',
687 'chromeos%': '<(chromeos)', 681 'chromeos%': '<(chromeos)',
688 'enable_viewport%': '<(enable_viewport)', 682 'enable_viewport%': '<(enable_viewport)',
689 'enable_hidpi%': '<(enable_hidpi)', 683 'enable_hidpi%': '<(enable_hidpi)',
690 'enable_touch_ui%': '<(enable_touch_ui)', 684 'enable_touch_ui%': '<(enable_touch_ui)',
691 'use_xi2_mt%':'<(use_xi2_mt)', 685 'use_xi2_mt%':'<(use_xi2_mt)',
692 'file_manager_extension%': '<(file_manager_extension)', 686 'file_manager_extension%': '<(file_manager_extension)',
693 'image_loader_extension%': '<(image_loader_extension)', 687 'image_loader_extension%': '<(image_loader_extension)',
694 'inside_chromium_build%': '<(inside_chromium_build)', 688 'inside_chromium_build%': '<(inside_chromium_build)',
695 'fastbuild%': '<(fastbuild)', 689 'fastbuild%': '<(fastbuild)',
696 'dcheck_always_on%': '<(dcheck_always_on)', 690 'dcheck_always_on%': '<(dcheck_always_on)',
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 }], 1774 }],
1781 ['remoting==1', { 1775 ['remoting==1', {
1782 'defines': ['ENABLE_REMOTING=1'], 1776 'defines': ['ENABLE_REMOTING=1'],
1783 }], 1777 }],
1784 ['enable_webrtc==1', { 1778 ['enable_webrtc==1', {
1785 'defines': ['ENABLE_WEBRTC=1'], 1779 'defines': ['ENABLE_WEBRTC=1'],
1786 }], 1780 }],
1787 ['proprietary_codecs==1', { 1781 ['proprietary_codecs==1', {
1788 'defines': ['USE_PROPRIETARY_CODECS'], 1782 'defines': ['USE_PROPRIETARY_CODECS'],
1789 }], 1783 }],
1790 ['enable_pepper_threading==1', {
1791 'defines': ['ENABLE_PEPPER_THREADING'],
1792 }],
1793 ['enable_viewport==1', { 1784 ['enable_viewport==1', {
1794 'defines': ['ENABLE_VIEWPORT'], 1785 'defines': ['ENABLE_VIEWPORT'],
1795 }], 1786 }],
1796 ['configuration_policy==1', { 1787 ['configuration_policy==1', {
1797 'defines': ['ENABLE_CONFIGURATION_POLICY'], 1788 'defines': ['ENABLE_CONFIGURATION_POLICY'],
1798 }], 1789 }],
1799 ['input_speech==1', { 1790 ['input_speech==1', {
1800 'defines': ['ENABLE_INPUT_SPEECH'], 1791 'defines': ['ENABLE_INPUT_SPEECH'],
1801 }], 1792 }],
1802 ['notifications==1', { 1793 ['notifications==1', {
(...skipping 2379 matching lines...) Expand 10 before | Expand all | Expand 10 after
4182 # settings in target dicts. SYMROOT is a special case, because many other 4173 # settings in target dicts. SYMROOT is a special case, because many other
4183 # Xcode variables depend on it, including variables such as 4174 # Xcode variables depend on it, including variables such as
4184 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4175 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4185 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4176 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4186 # files to appear (when present) in the UI as actual files and not red 4177 # files to appear (when present) in the UI as actual files and not red
4187 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4178 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4188 # and therefore SYMROOT, needs to be set at the project level. 4179 # and therefore SYMROOT, needs to be set at the project level.
4189 'SYMROOT': '<(DEPTH)/xcodebuild', 4180 'SYMROOT': '<(DEPTH)/xcodebuild',
4190 }, 4181 },
4191 } 4182 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698