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

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: 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 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 }], 1610 }],
1611 ], 1611 ],
1612 }], # os_posix==1 and OS!="mac" and OS!="ios" 1612 }], # os_posix==1 and OS!="mac" and OS!="ios"
1613 ['OS=="ios"', { 1613 ['OS=="ios"', {
1614 'disable_nacl%': 1, 1614 'disable_nacl%': 1,
1615 'enable_background%': 0, 1615 'enable_background%': 0,
1616 'icu_use_data_file_flag%': 1, 1616 'icu_use_data_file_flag%': 1,
1617 'enable_web_speech%': 0, 1617 'enable_web_speech%': 0,
1618 'use_system_libxml%': 1, 1618 'use_system_libxml%': 1,
1619 'use_system_sqlite%': 1, 1619 'use_system_sqlite%': 1,
1620 'sqlite_enable_fts2%': 0,
1620 'locales==': [ 1621 'locales==': [
1621 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX', 1622 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1622 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms', 1623 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1623 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr', 1624 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1624 'uk', 'vi', 'zh-CN', 'zh-TW', 1625 'uk', 'vi', 'zh-CN', 'zh-TW',
1625 ], 1626 ],
1626 1627
1627 # The Mac SDK is set for iOS builds and passed through to Mac 1628 # The Mac SDK is set for iOS builds and passed through to Mac
1628 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be 1629 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be
1629 # overridden from the command line the same way it is for a Mac build. 1630 # overridden from the command line the same way it is for a Mac build.
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
2329 ['((OS=="linux" or OS=="android") and ' 2330 ['((OS=="linux" or OS=="android") and '
2330 '(target_arch=="ia32" or target_arch=="x64" or ' 2331 '(target_arch=="ia32" or target_arch=="x64" or '
2331 'target_arch=="arm" or target_arch=="mipsel" or ' 2332 'target_arch=="arm" or target_arch=="mipsel" or '
2332 'target_arch=="arm64"))', { 2333 'target_arch=="arm64"))', {
2333 'use_seccomp_bpf%': 1, 2334 'use_seccomp_bpf%': 1,
2334 }, { 2335 }, {
2335 'use_seccomp_bpf%': 0, 2336 'use_seccomp_bpf%': 0,
2336 }], 2337 }],
2337 ], 2338 ],
2338 2339
2340 # fts2 is used for older history files, so we're signed on for keeping our
2341 # version up-to-date.
2342 'sqlite_enable_fts2%': 1,
erikwright (departed) 2014/09/30 14:08:44 I think there should be a variable named "support_
2343
2339 # The path to the ANGLE library. 2344 # The path to the ANGLE library.
2340 'angle_path': '<(DEPTH)/third_party/angle', 2345 'angle_path': '<(DEPTH)/third_party/angle',
2341 2346
2342 # List of default apps to install in new profiles. The first list contains 2347 # List of default apps to install in new profiles. The first list contains
2343 # the source files as found in svn. The second list, used only for linux, 2348 # the source files as found in svn. The second list, used only for linux,
2344 # contains the destination location for each of the files. When a crx 2349 # contains the destination location for each of the files. When a crx
2345 # is added or removed from the list, the chrome/browser/resources/ 2350 # is added or removed from the list, the chrome/browser/resources/
2346 # default_apps/external_extensions.json file must also be updated. 2351 # default_apps/external_extensions.json file must also be updated.
2347 'default_apps_list': [ 2352 'default_apps_list': [
2348 'browser/resources/default_apps/external_extensions.json', 2353 'browser/resources/default_apps/external_extensions.json',
(...skipping 3425 matching lines...) Expand 10 before | Expand all | Expand 10 after
5774 # settings in target dicts. SYMROOT is a special case, because many other 5779 # settings in target dicts. SYMROOT is a special case, because many other
5775 # Xcode variables depend on it, including variables such as 5780 # Xcode variables depend on it, including variables such as
5776 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5781 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5777 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5782 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5778 # files to appear (when present) in the UI as actual files and not red 5783 # files to appear (when present) in the UI as actual files and not red
5779 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5784 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5780 # and therefore SYMROOT, needs to be set at the project level. 5785 # and therefore SYMROOT, needs to be set at the project level.
5781 'SYMROOT': '<(DEPTH)/xcodebuild', 5786 'SYMROOT': '<(DEPTH)/xcodebuild',
5782 }, 5787 },
5783 } 5788 }
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