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

Side by Side Diff: sql/sql.gyp

Issue 20022006: [sql] Use recover virtual table in sql::Recovery. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add some helpers, clean some comments. 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_unittest.cc ('K') | « sql/recovery_unittest.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 {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 }, 72 },
73 }, 73 },
74 { 74 {
75 'target_name': 'sql_unittests', 75 'target_name': 'sql_unittests',
76 'type': '<(gtest_target_type)', 76 'type': '<(gtest_target_type)',
77 'dependencies': [ 77 'dependencies': [
78 'sql', 78 'sql',
79 'test_support_sql', 79 'test_support_sql',
80 '../base/base.gyp:test_support_base', 80 '../base/base.gyp:test_support_base',
81 '../testing/gtest.gyp:gtest', 81 '../testing/gtest.gyp:gtest',
82 '../third_party/sqlite/sqlite.gyp:sqlite',
Scott Hess - ex-Googler 2013/07/26 04:51:43 So that the test code can see USE_SYSTEM_SQLITE.
82 ], 83 ],
83 'sources': [ 84 'sources': [
84 'run_all_unittests.cc', 85 'run_all_unittests.cc',
85 'connection_unittest.cc', 86 'connection_unittest.cc',
86 'recovery_unittest.cc', 87 'recovery_unittest.cc',
87 'sqlite_features_unittest.cc', 88 'sqlite_features_unittest.cc',
88 'statement_unittest.cc', 89 'statement_unittest.cc',
89 'transaction_unittest.cc', 90 'transaction_unittest.cc',
90 ], 91 ],
91 'include_dirs': [ 92 'include_dirs': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'variables': { 126 'variables': {
126 'test_suite_name': 'sql_unittests', 127 'test_suite_name': 'sql_unittests',
127 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', 128 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)',
128 }, 129 },
129 'includes': [ '../build/apk_test.gypi' ], 130 'includes': [ '../build/apk_test.gypi' ],
130 }, 131 },
131 ], 132 ],
132 }], 133 }],
133 ], 134 ],
134 } 135 }
OLDNEW
« sql/recovery_unittest.cc ('K') | « sql/recovery_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698