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

Side by Side Diff: build/common.gypi

Issue 6882021: Wrap the p2p transport API in a compile time flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 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 | chrome/browser/about_flags.cc » ('j') | webkit/glue/webkit_glue.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 # Set to select the Title Case versions of strings in GRD files. 122 # Set to select the Title Case versions of strings in GRD files.
123 'use_titlecase_in_grd_files%': 0, 123 'use_titlecase_in_grd_files%': 0,
124 124
125 # Use translations provided by volunteers at launchpad.net. This 125 # Use translations provided by volunteers at launchpad.net. This
126 # currently only works on Linux. 126 # currently only works on Linux.
127 'use_third_party_translations%': 0, 127 'use_third_party_translations%': 0,
128 128
129 # Remoting compilation is enabled by default. Set to 0 to disable. 129 # Remoting compilation is enabled by default. Set to 0 to disable.
130 'remoting%': 1, 130 'remoting%': 1,
131 131
132 # Transport PPAPI is enabled by default. Set to 0 to disable.
133 'ppapi_transport%': 1,
Sergey Ulanov 2011/04/19 18:54:57 It might be better to call it p2papi or p2p_apis t
134
132 # If this is set, the clang plugins used on the buildbot will be used. 135 # If this is set, the clang plugins used on the buildbot will be used.
133 # Run tools/clang/scripts/update.sh to make sure they are compiled. 136 # Run tools/clang/scripts/update.sh to make sure they are compiled.
134 # This causes 'clang_chrome_plugins_flags' to be set. 137 # This causes 'clang_chrome_plugins_flags' to be set.
135 # Has no effect if 'clang' is not set as well. 138 # Has no effect if 'clang' is not set as well.
136 'clang_use_chrome_plugins%': 0, 139 'clang_use_chrome_plugins%': 0,
137 140
138 'conditions': [ 141 'conditions': [
139 # A flag to enable or disable our compile-time dependency 142 # A flag to enable or disable our compile-time dependency
140 # on gnome-keyring. If that dependency is disabled, no gnome-keyring 143 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
141 # support will be available. This option is useful 144 # support will be available. This option is useful
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'python_ver%': '<(python_ver)', 195 'python_ver%': '<(python_ver)',
193 'armv7%': '<(armv7)', 196 'armv7%': '<(armv7)',
194 'arm_neon%': '<(arm_neon)', 197 'arm_neon%': '<(arm_neon)',
195 'sysroot%': '<(sysroot)', 198 'sysroot%': '<(sysroot)',
196 'disable_sse2%': '<(disable_sse2)', 199 'disable_sse2%': '<(disable_sse2)',
197 'library%': '<(library)', 200 'library%': '<(library)',
198 'component%': '<(component)', 201 'component%': '<(component)',
199 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', 202 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)',
200 'use_third_party_translations%': '<(use_third_party_translations)', 203 'use_third_party_translations%': '<(use_third_party_translations)',
201 'remoting%': '<(remoting)', 204 'remoting%': '<(remoting)',
205 'ppapi_transport%': '<(ppapi_transport)',
202 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 206 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
203 207
204 # The release channel that this build targets. This is used to restrict 208 # The release channel that this build targets. This is used to restrict
205 # channel-specific build options, like which installer packages to create. 209 # channel-specific build options, like which installer packages to create.
206 # The default is 'all', which does no channel-specific filtering. 210 # The default is 'all', which does no channel-specific filtering.
207 'channel%': 'all', 211 'channel%': 'all',
208 212
209 # Override chromium_mac_pch and set it to 0 to suppress the use of 213 # Override chromium_mac_pch and set it to 0 to suppress the use of
210 # precompiled headers on the Mac. Prefix header injection may still be 214 # precompiled headers on the Mac. Prefix header injection may still be
211 # used, but prefix headers will not be precompiled. This is useful when 215 # used, but prefix headers will not be precompiled. This is useful when
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 }], 606 }],
603 ['file_manager_extension==1', { 607 ['file_manager_extension==1', {
604 'defines': ['FILE_MANAGER_EXTENSION=1'], 608 'defines': ['FILE_MANAGER_EXTENSION=1'],
605 }], 609 }],
606 ['profiling==1', { 610 ['profiling==1', {
607 'defines': ['ENABLE_PROFILING=1'], 611 'defines': ['ENABLE_PROFILING=1'],
608 }], 612 }],
609 ['remoting==1', { 613 ['remoting==1', {
610 'defines': ['ENABLE_REMOTING=1'], 614 'defines': ['ENABLE_REMOTING=1'],
611 }], 615 }],
616 ['ppapi_transport==1', {
617 'defines': ['ENABLE_PPAPI_TRANSPORT=1'],
618 }],
612 ['proprietary_codecs==1', { 619 ['proprietary_codecs==1', {
613 'defines': ['USE_PROPRIETARY_CODECS'], 620 'defines': ['USE_PROPRIETARY_CODECS'],
614 }], 621 }],
615 ['enable_flapper_hacks==1', { 622 ['enable_flapper_hacks==1', {
616 'defines': ['ENABLE_FLAPPER_HACKS=1'], 623 'defines': ['ENABLE_FLAPPER_HACKS=1'],
617 }], 624 }],
618 ['fastbuild!=0', { 625 ['fastbuild!=0', {
619 'conditions': [ 626 'conditions': [
620 # For Windows, we don't genererate debug information. 627 # For Windows, we don't genererate debug information.
621 ['OS=="win"', { 628 ['OS=="win"', {
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 # and therefore SYMROOT, needs to be set at the project level. 1689 # and therefore SYMROOT, needs to be set at the project level.
1683 'SYMROOT': '<(DEPTH)/xcodebuild', 1690 'SYMROOT': '<(DEPTH)/xcodebuild',
1684 }, 1691 },
1685 } 1692 }
1686 1693
1687 # Local Variables: 1694 # Local Variables:
1688 # tab-width:2 1695 # tab-width:2
1689 # indent-tabs-mode:nil 1696 # indent-tabs-mode:nil
1690 # End: 1697 # End:
1691 # vim: set expandtab tabstop=2 shiftwidth=2: 1698 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | webkit/glue/webkit_glue.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698