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

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

Issue 11819042: Make sqlite targets build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 '../icu/icu.gyp:icui18n', 106 '../icu/icu.gyp:icui18n',
107 '../icu/icu.gyp:icuuc', 107 '../icu/icu.gyp:icuuc',
108 ], 108 ],
109 'direct_dependent_settings': { 109 'direct_dependent_settings': {
110 'include_dirs': [ 110 'include_dirs': [
111 '.', 111 '.',
112 '../..', 112 '../..',
113 ], 113 ],
114 }, 114 },
115 'msvs_disabled_warnings': [ 115 'msvs_disabled_warnings': [
116 4018, 4244, 116 4018, 4244, 4267,
117 ], 117 ],
118 'conditions': [ 118 'conditions': [
119 ['OS=="linux"', { 119 ['OS=="linux"', {
120 'link_settings': { 120 'link_settings': {
121 'libraries': [ 121 'libraries': [
122 '-ldl', 122 '-ldl',
123 ], 123 ],
124 }, 124 },
125 }], 125 }],
126 ['OS == "android"', { 126 ['OS == "android"', {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'src/src/shell_icu_linux.c', 176 'src/src/shell_icu_linux.c',
177 ], 177 ],
178 'link_settings': { 178 'link_settings': {
179 'link_languages': ['c++'], 179 'link_languages': ['c++'],
180 }, 180 },
181 }, 181 },
182 ], 182 ],
183 },] 183 },]
184 ], 184 ],
185 } 185 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698