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

Side by Side Diff: build/common.gypi

Issue 606033002: Make FTS2 inclusion in SQLite optional (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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
« no previous file with comments | « no previous file | sql/sql.gyp » ('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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 'enable_printing%': 0, 789 'enable_printing%': 0,
790 'enable_session_service%': 0, 790 'enable_session_service%': 0,
791 'enable_themes%': 0, 791 'enable_themes%': 0,
792 'enable_webrtc%': 0, 792 'enable_webrtc%': 0,
793 'notifications%': 0, 793 'notifications%': 0,
794 'remoting%': 0, 794 'remoting%': 0,
795 'safe_browsing%': 0, 795 'safe_browsing%': 0,
796 'enable_managed_users%': 0, 796 'enable_managed_users%': 0,
797 'enable_task_manager%': 0, 797 'enable_task_manager%': 0,
798 'use_system_libcxx%': 1, 798 'use_system_libcxx%': 1,
799 'support_pre_M6_history_database%': 0,
799 }], 800 }],
800 801
801 # Use GPU accelerated cross process image transport by default 802 # Use GPU accelerated cross process image transport by default
802 # on linux builds with the Aura window manager 803 # on linux builds with the Aura window manager
803 ['use_aura==1 and OS=="linux"', { 804 ['use_aura==1 and OS=="linux"', {
804 'ui_compositor_image_transport%': 1, 805 'ui_compositor_image_transport%': 1,
805 }, { 806 }, {
806 'ui_compositor_image_transport%': 0, 807 'ui_compositor_image_transport%': 0,
807 }], 808 }],
808 809
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 # 1031 #
1031 # Note that if you are building an official build or if 1032 # Note that if you are building an official build or if
1032 # use_official_google_api_keys has been set to 1 (explicitly or 1033 # use_official_google_api_keys has been set to 1 (explicitly or
1033 # implicitly), these values will be ignored and the official 1034 # implicitly), these values will be ignored and the official
1034 # keys will be used instead. 1035 # keys will be used instead.
1035 'google_api_key%': '', 1036 'google_api_key%': '',
1036 'google_default_client_id%': '', 1037 'google_default_client_id%': '',
1037 'google_default_client_secret%': '', 1038 'google_default_client_secret%': '',
1038 # Native Client is enabled by default. 1039 # Native Client is enabled by default.
1039 'disable_nacl%': '0', 1040 'disable_nacl%': '0',
1041
1042 # Set to 1 to support old history files
1043 'support_pre_M6_history_database%': '1',
1040 }, 1044 },
1041 1045
1042 # Copy conditionally-set variables out one scope. 1046 # Copy conditionally-set variables out one scope.
1043 'branding%': '<(branding)', 1047 'branding%': '<(branding)',
1044 'buildtype%': '<(buildtype)', 1048 'buildtype%': '<(buildtype)',
1045 'target_arch%': '<(target_arch)', 1049 'target_arch%': '<(target_arch)',
1046 'target_subarch%': '<(target_subarch)', 1050 'target_subarch%': '<(target_subarch)',
1047 'mips_arch_variant%': '<(mips_arch_variant)', 1051 'mips_arch_variant%': '<(mips_arch_variant)',
1048 'host_arch%': '<(host_arch)', 1052 'host_arch%': '<(host_arch)',
1049 'toolkit_views%': '<(toolkit_views)', 1053 'toolkit_views%': '<(toolkit_views)',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 'enable_mdns%' : '<(enable_mdns)', 1174 'enable_mdns%' : '<(enable_mdns)',
1171 'enable_service_discovery%' : '<(enable_service_discovery)', 1175 'enable_service_discovery%' : '<(enable_service_discovery)',
1172 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)', 1176 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1173 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension) ', 1177 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension) ',
1174 'v8_optimized_debug%': '<(v8_optimized_debug)', 1178 'v8_optimized_debug%': '<(v8_optimized_debug)',
1175 'proprietary_codecs%': '<(proprietary_codecs)', 1179 'proprietary_codecs%': '<(proprietary_codecs)',
1176 'use_goma%': '<(use_goma)', 1180 'use_goma%': '<(use_goma)',
1177 'gomadir%': '<(gomadir)', 1181 'gomadir%': '<(gomadir)',
1178 'video_hole%': '<(video_hole)', 1182 'video_hole%': '<(video_hole)',
1179 'enable_load_completion_hacks%': '<(enable_load_completion_hacks)', 1183 'enable_load_completion_hacks%': '<(enable_load_completion_hacks)',
1184 'support_pre_M6_history_database%': '<(support_pre_M6_history_database)',
1180 1185
1181 # Whether or not we are building the Athena shell. 1186 # Whether or not we are building the Athena shell.
1182 'use_athena%': '0', 1187 'use_athena%': '0',
1183 1188
1184 # Use system protobuf instead of bundled one. 1189 # Use system protobuf instead of bundled one.
1185 'use_system_protobuf%': 0, 1190 'use_system_protobuf%': 0,
1186 1191
1187 # Use system yasm instead of bundled one. 1192 # Use system yasm instead of bundled one.
1188 'use_system_yasm%': 0, 1193 'use_system_yasm%': 0,
1189 1194
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
2298 ['((OS=="linux" or OS=="android") and ' 2303 ['((OS=="linux" or OS=="android") and '
2299 '(target_arch=="ia32" or target_arch=="x64" or ' 2304 '(target_arch=="ia32" or target_arch=="x64" or '
2300 'target_arch=="arm" or target_arch=="mipsel" or ' 2305 'target_arch=="arm" or target_arch=="mipsel" or '
2301 'target_arch=="arm64"))', { 2306 'target_arch=="arm64"))', {
2302 'use_seccomp_bpf%': 1, 2307 'use_seccomp_bpf%': 1,
2303 }, { 2308 }, {
2304 'use_seccomp_bpf%': 0, 2309 'use_seccomp_bpf%': 0,
2305 }], 2310 }],
2306 ], 2311 ],
2307 2312
2313 # older history files use fts2 instead of fts3
2314 'sqlite_enable_fts2%': '<(support_pre_M6_history_database)',
2315
2308 # The path to the ANGLE library. 2316 # The path to the ANGLE library.
2309 'angle_path': '<(DEPTH)/third_party/angle', 2317 'angle_path': '<(DEPTH)/third_party/angle',
2310 2318
2311 # List of default apps to install in new profiles. The first list contains 2319 # List of default apps to install in new profiles. The first list contains
2312 # the source files as found in svn. The second list, used only for linux, 2320 # the source files as found in svn. The second list, used only for linux,
2313 # contains the destination location for each of the files. When a crx 2321 # contains the destination location for each of the files. When a crx
2314 # is added or removed from the list, the chrome/browser/resources/ 2322 # is added or removed from the list, the chrome/browser/resources/
2315 # default_apps/external_extensions.json file must also be updated. 2323 # default_apps/external_extensions.json file must also be updated.
2316 'default_apps_list': [ 2324 'default_apps_list': [
2317 'browser/resources/default_apps/external_extensions.json', 2325 'browser/resources/default_apps/external_extensions.json',
(...skipping 3390 matching lines...) Expand 10 before | Expand all | Expand 10 after
5708 # settings in target dicts. SYMROOT is a special case, because many other 5716 # settings in target dicts. SYMROOT is a special case, because many other
5709 # Xcode variables depend on it, including variables such as 5717 # Xcode variables depend on it, including variables such as
5710 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5718 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5711 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5719 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5712 # files to appear (when present) in the UI as actual files and not red 5720 # files to appear (when present) in the UI as actual files and not red
5713 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5721 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5714 # and therefore SYMROOT, needs to be set at the project level. 5722 # and therefore SYMROOT, needs to be set at the project level.
5715 'SYMROOT': '<(DEPTH)/xcodebuild', 5723 'SYMROOT': '<(DEPTH)/xcodebuild',
5716 }, 5724 },
5717 } 5725 }
OLDNEW
« no previous file with comments | « no previous file | sql/sql.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698