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

Side by Side Diff: sql/sql.gyp

Issue 23649002: Unit tests for sql::MetaTable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Greg's points. Created 7 years, 3 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 {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'dependencies': [ 78 'dependencies': [
79 'sql', 79 'sql',
80 'test_support_sql', 80 'test_support_sql',
81 '../base/base.gyp:test_support_base', 81 '../base/base.gyp:test_support_base',
82 '../testing/gtest.gyp:gtest', 82 '../testing/gtest.gyp:gtest',
83 '../third_party/sqlite/sqlite.gyp:sqlite', 83 '../third_party/sqlite/sqlite.gyp:sqlite',
84 ], 84 ],
85 'sources': [ 85 'sources': [
86 'run_all_unittests.cc', 86 'run_all_unittests.cc',
87 'connection_unittest.cc', 87 'connection_unittest.cc',
88 'meta_table_unittest.cc',
88 'recovery_unittest.cc', 89 'recovery_unittest.cc',
89 'sqlite_features_unittest.cc', 90 'sqlite_features_unittest.cc',
90 'statement_unittest.cc', 91 'statement_unittest.cc',
91 'transaction_unittest.cc', 92 'transaction_unittest.cc',
92 ], 93 ],
93 'include_dirs': [ 94 'include_dirs': [
94 '..', 95 '..',
95 ], 96 ],
96 'conditions': [ 97 'conditions': [
97 ['os_posix==1 and OS!="mac" and OS!="ios"', { 98 ['os_posix==1 and OS!="mac" and OS!="ios"', {
(...skipping 29 matching lines...) Expand all
127 'variables': { 128 'variables': {
128 'test_suite_name': 'sql_unittests', 129 'test_suite_name': 'sql_unittests',
129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', 130 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)',
130 }, 131 },
131 'includes': [ '../build/apk_test.gypi' ], 132 'includes': [ '../build/apk_test.gypi' ],
132 }, 133 },
133 ], 134 ],
134 }], 135 }],
135 ], 136 ],
136 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698