OLD | NEW |
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 '..', | 71 '..', |
72 ], | 72 ], |
73 }, | 73 }, |
74 }, | 74 }, |
75 { | 75 { |
76 'target_name': 'sql_unittests', | 76 'target_name': 'sql_unittests', |
77 'type': '<(gtest_target_type)', | 77 'type': '<(gtest_target_type)', |
78 'dependencies': [ | 78 'dependencies': [ |
79 'sql', | 79 'sql', |
80 'test_support_sql', | 80 'test_support_sql', |
| 81 '../base/base.gyp:run_all_unittests', |
81 '../base/base.gyp:test_support_base', | 82 '../base/base.gyp:test_support_base', |
82 '../testing/gtest.gyp:gtest', | 83 '../testing/gtest.gyp:gtest', |
83 '../third_party/sqlite/sqlite.gyp:sqlite', | 84 '../third_party/sqlite/sqlite.gyp:sqlite', |
84 ], | 85 ], |
85 'sources': [ | 86 'sources': [ |
86 'run_all_unittests.cc', | |
87 'connection_unittest.cc', | 87 'connection_unittest.cc', |
88 'recovery_unittest.cc', | 88 'recovery_unittest.cc', |
89 'sqlite_features_unittest.cc', | 89 'sqlite_features_unittest.cc', |
90 'statement_unittest.cc', | 90 'statement_unittest.cc', |
91 'transaction_unittest.cc', | 91 'transaction_unittest.cc', |
92 ], | 92 ], |
93 'include_dirs': [ | 93 'include_dirs': [ |
94 '..', | 94 '..', |
95 ], | 95 ], |
96 'conditions': [ | 96 'conditions': [ |
(...skipping 30 matching lines...) Expand all Loading... |
127 'variables': { | 127 'variables': { |
128 'test_suite_name': 'sql_unittests', | 128 'test_suite_name': 'sql_unittests', |
129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', | 129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt
ests<(SHARED_LIB_SUFFIX)', |
130 }, | 130 }, |
131 'includes': [ '../build/apk_test.gypi' ], | 131 'includes': [ '../build/apk_test.gypi' ], |
132 }, | 132 }, |
133 ], | 133 ], |
134 }], | 134 }], |
135 ], | 135 ], |
136 } | 136 } |
OLD | NEW |