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

Side by Side Diff: sql/sql.gyp

Issue 18180013: Scoped recovery module for sql/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Oops, add recover_unittest.cc Created 7 years, 5 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
« sql/recovery.h ('K') | « sql/scoped_attach.cc ('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 '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 'export_dependent_settings': [ 17 'export_dependent_settings': [
18 '../base/base.gyp:base', 18 '../base/base.gyp:base',
19 ], 19 ],
20 'defines': [ 'SQL_IMPLEMENTATION' ], 20 'defines': [ 'SQL_IMPLEMENTATION' ],
21 'sources': [ 21 'sources': [
22 'connection.cc', 22 'connection.cc',
23 'connection.h', 23 'connection.h',
24 'error_delegate_util.cc', 24 'error_delegate_util.cc',
25 'error_delegate_util.h', 25 'error_delegate_util.h',
26 'init_status.h', 26 'init_status.h',
27 'meta_table.cc', 27 'meta_table.cc',
28 'meta_table.h', 28 'meta_table.h',
29 'recovery.cc',
30 'recovery.h',
31 'scoped_attach.cc',
32 'scoped_attach.h',
29 'statement.cc', 33 'statement.cc',
30 'statement.h', 34 'statement.h',
31 'transaction.cc', 35 'transaction.cc',
32 'transaction.h', 36 'transaction.h',
33 ], 37 ],
34 'include_dirs': [ 38 'include_dirs': [
35 '..', 39 '..',
36 ], 40 ],
37 'direct_dependent_settings': { 41 'direct_dependent_settings': {
38 'include_dirs': [ 42 'include_dirs': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'type': '<(gtest_target_type)', 76 'type': '<(gtest_target_type)',
73 'dependencies': [ 77 'dependencies': [
74 'sql', 78 'sql',
75 'test_support_sql', 79 'test_support_sql',
76 '../base/base.gyp:test_support_base', 80 '../base/base.gyp:test_support_base',
77 '../testing/gtest.gyp:gtest', 81 '../testing/gtest.gyp:gtest',
78 ], 82 ],
79 'sources': [ 83 'sources': [
80 'run_all_unittests.cc', 84 'run_all_unittests.cc',
81 'connection_unittest.cc', 85 'connection_unittest.cc',
86 'recover_unittest.cc',
82 'sqlite_features_unittest.cc', 87 'sqlite_features_unittest.cc',
83 'statement_unittest.cc', 88 'statement_unittest.cc',
84 'transaction_unittest.cc', 89 'transaction_unittest.cc',
85 ], 90 ],
86 'include_dirs': [ 91 'include_dirs': [
87 '..', 92 '..',
88 ], 93 ],
89 'conditions': [ 94 'conditions': [
90 ['os_posix==1 and OS!="mac" and OS!="ios"', { 95 ['os_posix==1 and OS!="mac" and OS!="ios"', {
91 'conditions': [ 96 'conditions': [
(...skipping 28 matching lines...) Expand all
120 'variables': { 125 'variables': {
121 'test_suite_name': 'sql_unittests', 126 'test_suite_name': 'sql_unittests',
122 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', 127 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)',
123 }, 128 },
124 'includes': [ '../build/apk_test.gypi' ], 129 'includes': [ '../build/apk_test.gypi' ],
125 }, 130 },
126 ], 131 ],
127 }], 132 }],
128 ], 133 ],
129 } 134 }
OLDNEW
« sql/recovery.h ('K') | « sql/scoped_attach.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698