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

Side by Side Diff: sql/sql.gyp

Issue 15104003: Remove last client of sql::DiagnosticErrorDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Convert to error callback. Created 7 years, 7 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
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 {
11 'target_name': 'sql', 11 'target_name': 'sql',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../third_party/sqlite/sqlite.gyp:sqlite', 15 '../third_party/sqlite/sqlite.gyp:sqlite',
16 ], 16 ],
17 'defines': [ 'SQL_IMPLEMENTATION' ], 17 'defines': [ 'SQL_IMPLEMENTATION' ],
18 'sources': [ 18 'sources': [
19 'connection.cc', 19 'connection.cc',
20 'connection.h', 20 'connection.h',
21 'diagnostic_error_delegate.h',
22 'error_delegate_util.cc', 21 'error_delegate_util.cc',
23 'error_delegate_util.h', 22 'error_delegate_util.h',
24 'init_status.h', 23 'init_status.h',
25 'meta_table.cc', 24 'meta_table.cc',
26 'meta_table.h', 25 'meta_table.h',
27 'statement.cc', 26 'statement.cc',
28 'statement.h', 27 'statement.h',
29 'transaction.cc', 28 'transaction.cc',
30 'transaction.h', 29 'transaction.h',
31 ], 30 ],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'variables': { 83 'variables': {
85 'test_suite_name': 'sql_unittests', 84 'test_suite_name': 'sql_unittests',
86 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', 85 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)',
87 }, 86 },
88 'includes': [ '../build/apk_test.gypi' ], 87 'includes': [ '../build/apk_test.gypi' ],
89 }, 88 },
90 ], 89 ],
91 }], 90 }],
92 ], 91 ],
93 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698