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

Side by Side Diff: build/common.gypi

Issue 7491086: This will cause build failed since a include file does not exist. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/835/src/
Patch Set: Created 9 years, 4 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/extensions/extension_processes_apitest.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 # build (0). 120 # build (0).
121 'inside_chromium_build%': 1, 121 'inside_chromium_build%': 1,
122 122
123 # Set to 1 to enable fast builds. It disables debug info for fastest 123 # Set to 1 to enable fast builds. It disables debug info for fastest
124 # compilation. 124 # compilation.
125 'fastbuild%': 0, 125 'fastbuild%': 0,
126 126
127 # Disable file manager component extension by default. 127 # Disable file manager component extension by default.
128 'file_manager_extension%': 0, 128 'file_manager_extension%': 0,
129 129
130 # Disable WebUI TaskManager by default.
131 'webui_task_manager%': 0,
132
133 # Python version. 130 # Python version.
134 'python_ver%': '2.6', 131 'python_ver%': '2.6',
135 132
136 # Set ARM-v7 compilation flags 133 # Set ARM-v7 compilation flags
137 'armv7%': 0, 134 'armv7%': 0,
138 135
139 # Set Neon compilation flags (only meaningful if armv7==1). 136 # Set Neon compilation flags (only meaningful if armv7==1).
140 'arm_neon%': 1, 137 'arm_neon%': 1,
141 138
142 # The system root for cross-compiles. Default: none. 139 # The system root for cross-compiles. Default: none.
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'enable_flapper_hacks%': 0, 237 'enable_flapper_hacks%': 0,
241 }], 238 }],
242 239
243 # Enable file manager extension by default on Chrome OS. 240 # Enable file manager extension by default on Chrome OS.
244 ['chromeos==1', { 241 ['chromeos==1', {
245 'file_manager_extension%': 1, 242 'file_manager_extension%': 1,
246 }, { 243 }, {
247 'file_manager_extension%': 0, 244 'file_manager_extension%': 0,
248 }], 245 }],
249 246
250 # Enable WebUI TaskManager only on Chrome OS and Touch UI.
251 ['chromeos==1 or touchui==1', {
252 'webui_task_manager%': 1,
253 }, {
254 'webui_task_manager%': 0,
255 }],
256
257 # Enable smooth scrolling for Linux and ChromeOS 247 # Enable smooth scrolling for Linux and ChromeOS
258 ['OS=="linux"', { 248 ['OS=="linux"', {
259 'enable_smooth_scrolling%': 1, 249 'enable_smooth_scrolling%': 1,
260 }, { 250 }, {
261 'enable_smooth_scrolling%': 0, 251 'enable_smooth_scrolling%': 0,
262 }], 252 }],
263 ], 253 ],
264 }, 254 },
265 255
266 # Copy conditionally-set variables out one scope. 256 # Copy conditionally-set variables out one scope.
267 'branding%': '<(branding)', 257 'branding%': '<(branding)',
268 'buildtype%': '<(buildtype)', 258 'buildtype%': '<(buildtype)',
269 'target_arch%': '<(target_arch)', 259 'target_arch%': '<(target_arch)',
270 'host_arch%': '<(host_arch)', 260 'host_arch%': '<(host_arch)',
271 'library%': 'static_library', 261 'library%': 'static_library',
272 'toolkit_views%': '<(toolkit_views)', 262 'toolkit_views%': '<(toolkit_views)',
273 'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)', 263 'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
274 'views_compositor%': '<(views_compositor)', 264 'views_compositor%': '<(views_compositor)',
275 'os_posix%': '<(os_posix)', 265 'os_posix%': '<(os_posix)',
276 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', 266 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)',
277 'use_skia%': '<(use_skia)', 267 'use_skia%': '<(use_skia)',
278 'use_x11%': '<(use_x11)', 268 'use_x11%': '<(use_x11)',
279 'use_gnome_keyring%': '<(use_gnome_keyring)', 269 'use_gnome_keyring%': '<(use_gnome_keyring)',
280 'linux_fpic%': '<(linux_fpic)', 270 'linux_fpic%': '<(linux_fpic)',
281 'enable_flapper_hacks%': '<(enable_flapper_hacks)', 271 'enable_flapper_hacks%': '<(enable_flapper_hacks)',
282 'chromeos%': '<(chromeos)', 272 'chromeos%': '<(chromeos)',
283 'touchui%': '<(touchui)', 273 'touchui%': '<(touchui)',
284 'webui_certificate_viewer%': '<(webui_certificate_viewer)', 274 'webui_certificate_viewer%': '<(webui_certificate_viewer)',
285 'file_manager_extension%': '<(file_manager_extension)', 275 'file_manager_extension%': '<(file_manager_extension)',
286 'webui_task_manager%': '<(webui_task_manager)',
287 'inside_chromium_build%': '<(inside_chromium_build)', 276 'inside_chromium_build%': '<(inside_chromium_build)',
288 'fastbuild%': '<(fastbuild)', 277 'fastbuild%': '<(fastbuild)',
289 'python_ver%': '<(python_ver)', 278 'python_ver%': '<(python_ver)',
290 'armv7%': '<(armv7)', 279 'armv7%': '<(armv7)',
291 'arm_neon%': '<(arm_neon)', 280 'arm_neon%': '<(arm_neon)',
292 'sysroot%': '<(sysroot)', 281 'sysroot%': '<(sysroot)',
293 'disable_sse2%': '<(disable_sse2)', 282 'disable_sse2%': '<(disable_sse2)',
294 'component%': '<(component)', 283 'component%': '<(component)',
295 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', 284 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)',
296 'use_third_party_translations%': '<(use_third_party_translations)', 285 'use_third_party_translations%': '<(use_third_party_translations)',
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 }], 623 }],
635 ['touchui==1', { 624 ['touchui==1', {
636 'grit_defines': ['-D', 'touchui'], 625 'grit_defines': ['-D', 'touchui'],
637 }], 626 }],
638 ['webui_certificate_viewer==1', { 627 ['webui_certificate_viewer==1', {
639 'grit_defines': ['-D', 'webui_certificate_viewer'], 628 'grit_defines': ['-D', 'webui_certificate_viewer'],
640 }], 629 }],
641 ['file_manager_extension==1', { 630 ['file_manager_extension==1', {
642 'grit_defines': ['-D', 'file_manager_extension'], 631 'grit_defines': ['-D', 'file_manager_extension'],
643 }], 632 }],
644 ['webui_task_manager==1', {
645 'grit_defines': ['-D', 'webui_task_manager'],
646 }],
647 ['remoting==1', { 633 ['remoting==1', {
648 'grit_defines': ['-D', 'remoting'], 634 'grit_defines': ['-D', 'remoting'],
649 }], 635 }],
650 ['use_titlecase_in_grd_files==1', { 636 ['use_titlecase_in_grd_files==1', {
651 'grit_defines': ['-D', 'use_titlecase'], 637 'grit_defines': ['-D', 'use_titlecase'],
652 }], 638 }],
653 ['use_third_party_translations==1', { 639 ['use_third_party_translations==1', {
654 'grit_defines': ['-D', 'use_third_party_translations'], 640 'grit_defines': ['-D', 'use_third_party_translations'],
655 'locales': [ 641 'locales': [
656 'ast', 'bs', 'ca@valencia', 'eo', 'eu', 'gl', 'hy', 'ka', 'ku', 'kw', 642 'ast', 'bs', 'ca@valencia', 'eo', 'eu', 'gl', 'hy', 'ka', 'ku', 'kw',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 }], 728 }],
743 ['chromeos==1', { 729 ['chromeos==1', {
744 'defines': ['OS_CHROMEOS=1'], 730 'defines': ['OS_CHROMEOS=1'],
745 }], 731 }],
746 ['touchui==1', { 732 ['touchui==1', {
747 'defines': ['TOUCH_UI=1'], 733 'defines': ['TOUCH_UI=1'],
748 }], 734 }],
749 ['file_manager_extension==1', { 735 ['file_manager_extension==1', {
750 'defines': ['FILE_MANAGER_EXTENSION=1'], 736 'defines': ['FILE_MANAGER_EXTENSION=1'],
751 }], 737 }],
752 ['webui_task_manager==1', {
753 'defines': ['WEBUI_TASK_MANAGER=1'],
754 }],
755 ['profiling==1', { 738 ['profiling==1', {
756 'defines': ['ENABLE_PROFILING=1'], 739 'defines': ['ENABLE_PROFILING=1'],
757 }], 740 }],
758 ['remoting==1', { 741 ['remoting==1', {
759 'defines': ['ENABLE_REMOTING=1'], 742 'defines': ['ENABLE_REMOTING=1'],
760 }], 743 }],
761 ['p2p_apis==1', { 744 ['p2p_apis==1', {
762 'defines': ['ENABLE_P2P_APIS=1'], 745 'defines': ['ENABLE_P2P_APIS=1'],
763 }], 746 }],
764 ['proprietary_codecs==1', { 747 ['proprietary_codecs==1', {
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1905 # settings in target dicts. SYMROOT is a special case, because many other 1888 # settings in target dicts. SYMROOT is a special case, because many other
1906 # Xcode variables depend on it, including variables such as 1889 # Xcode variables depend on it, including variables such as
1907 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 1890 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
1908 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 1891 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
1909 # files to appear (when present) in the UI as actual files and not red 1892 # files to appear (when present) in the UI as actual files and not red
1910 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 1893 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
1911 # and therefore SYMROOT, needs to be set at the project level. 1894 # and therefore SYMROOT, needs to be set at the project level.
1912 'SYMROOT': '<(DEPTH)/xcodebuild', 1895 'SYMROOT': '<(DEPTH)/xcodebuild',
1913 }, 1896 },
1914 } 1897 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_processes_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698