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

Side by Side Diff: third_party/sqlite/sqlite.gyp

Issue 591153002: android_webview: Enable FDO support for some targets. (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 | « skia/skia_common.gypi ('k') | no next file » | 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 'use_system_sqlite%': 0, 7 'use_system_sqlite%': 0,
8 'required_sqlite_version': '3.6.1', 8 'required_sqlite_version': '3.6.1',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 }], 154 }],
155 ['os_posix == 1 and OS != "mac" and OS != "android"', { 155 ['os_posix == 1 and OS != "mac" and OS != "android"', {
156 'cflags': [ 156 'cflags': [
157 # SQLite doesn't believe in compiler warnings, 157 # SQLite doesn't believe in compiler warnings,
158 # preferring testing. 158 # preferring testing.
159 # http://www.sqlite.org/faq.html#q17 159 # http://www.sqlite.org/faq.html#q17
160 '-Wno-int-to-pointer-cast', 160 '-Wno-int-to-pointer-cast',
161 '-Wno-pointer-to-int-cast', 161 '-Wno-pointer-to-int-cast',
162 ], 162 ],
163 }], 163 }],
164 # Enable feedback-directed optimisation for sqlite when building in android.
165 ['android_webview_build == 1', {
166 'aosp_build_settings': {
167 'LOCAL_FDO_SUPPORT': 'true',
168 },
169 }],
164 ], 170 ],
165 }], 171 }],
166 ], 172 ],
167 }, 173 },
168 ], 174 ],
169 'conditions': [ 175 'conditions': [
170 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', { 176 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', {
171 'targets': [ 177 'targets': [
172 { 178 {
173 'target_name': 'sqlite_shell', 179 'target_name': 'sqlite_shell',
(...skipping 21 matching lines...) Expand all
195 '../icu/icu.gyp:icuuc', 201 '../icu/icu.gyp:icuuc',
196 ], 202 ],
197 'sources': [ 203 'sources': [
198 'src/ext/icu/icu.c', 204 'src/ext/icu/icu.c',
199 ], 205 ],
200 }, 206 },
201 ], 207 ],
202 }], 208 }],
203 ], 209 ],
204 } 210 }
OLDNEW
« no previous file with comments | « skia/skia_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698