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

Side by Side Diff: sql/sql.gyp

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 | « build/common.gypi ('k') | sql/sqlite_features_unittest.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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '../base/allocator/allocator.gyp:allocator', 108 '../base/allocator/allocator.gyp:allocator',
109 ], 109 ],
110 }], 110 }],
111 ], 111 ],
112 }], 112 }],
113 ['OS == "android"', { 113 ['OS == "android"', {
114 'dependencies': [ 114 'dependencies': [
115 '../testing/android/native_test.gyp:native_test_native_code', 115 '../testing/android/native_test.gyp:native_test_native_code',
116 ], 116 ],
117 }], 117 }],
118 ['sqlite_enable_fts2', {
119 'defines': [
120 'SQLITE_ENABLE_FTS2',
121 ],
122 }],
118 ], 123 ],
119 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
120 'msvs_disabled_warnings': [4267, ], 125 'msvs_disabled_warnings': [4267, ],
121 }, 126 },
122 ], 127 ],
123 'conditions': [ 128 'conditions': [
124 ['OS == "android"', { 129 ['OS == "android"', {
125 'targets': [ 130 'targets': [
126 { 131 {
127 'target_name': 'sql_unittests_apk', 132 'target_name': 'sql_unittests_apk',
(...skipping 20 matching lines...) Expand all
148 '../build/isolate.gypi', 153 '../build/isolate.gypi',
149 ], 154 ],
150 'sources': [ 155 'sources': [
151 'sql_unittests.isolate', 156 'sql_unittests.isolate',
152 ], 157 ],
153 }, 158 },
154 ], 159 ],
155 }], 160 }],
156 ], 161 ],
157 } 162 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | sql/sqlite_features_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698