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

Side by Side Diff: sql/sql.gyp

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 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
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 45 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
46 'msvs_disabled_warnings': [4267, ], 46 'msvs_disabled_warnings': [4267, ],
47 }, 47 },
48 { 48 {
49 'target_name': 'test_support_sql', 49 'target_name': 'test_support_sql',
50 'type': 'static_library', 50 'type': 'static_library',
51 'dependencies': [ 51 'dependencies': [
52 'sql', 52 'sql',
53 '../base/base.gyp:base', 53 '../base/base.gyp:base',
54 '../testing/gtest.gyp:gtest', 54 '../testing/gtest.gyp:gtest',
55 '../third_party/sqlite/sqlite.gyp:sqlite',
55 ], 56 ],
56 'export_dependent_settings': [ 57 'export_dependent_settings': [
57 'sql', 58 'sql',
58 '../base/base.gyp:base', 59 '../base/base.gyp:base',
59 ], 60 ],
60 'sources': [ 61 'sources': [
61 'test/error_callback_support.cc', 62 'test/error_callback_support.cc',
62 'test/error_callback_support.h', 63 'test/error_callback_support.h',
63 'test/scoped_error_ignorer.cc', 64 'test/scoped_error_ignorer.cc',
64 'test/scoped_error_ignorer.h', 65 'test/scoped_error_ignorer.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 '../build/isolate.gypi', 154 '../build/isolate.gypi',
154 ], 155 ],
155 'sources': [ 156 'sources': [
156 'sql_unittests.isolate', 157 'sql_unittests.isolate',
157 ], 158 ],
158 }, 159 },
159 ], 160 ],
160 }], 161 }],
161 ], 162 ],
162 } 163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698