OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("sql") { | 7 component("sql") { |
8 sources = [ | 8 sources = [ |
9 "connection.cc", | 9 "connection.cc", |
10 "connection.h", | 10 "connection.h", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "test/scoped_error_ignorer.cc", | 42 "test/scoped_error_ignorer.cc", |
43 "test/scoped_error_ignorer.h", | 43 "test/scoped_error_ignorer.h", |
44 "test/test_helpers.cc", | 44 "test/test_helpers.cc", |
45 "test/test_helpers.h", | 45 "test/test_helpers.h", |
46 ] | 46 ] |
47 | 47 |
48 deps = [ | 48 deps = [ |
49 ":sql", | 49 ":sql", |
50 "//base", | 50 "//base", |
51 "//testing/gtest", | 51 "//testing/gtest", |
| 52 "//third_party/sqlite", |
52 ] | 53 ] |
53 } | 54 } |
54 | 55 |
55 test("sql_unittests") { | 56 test("sql_unittests") { |
56 sources = [ | 57 sources = [ |
57 "connection_unittest.cc", | 58 "connection_unittest.cc", |
58 "meta_table_unittest.cc", | 59 "meta_table_unittest.cc", |
59 "recovery_unittest.cc", | 60 "recovery_unittest.cc", |
60 "sqlite_features_unittest.cc", | 61 "sqlite_features_unittest.cc", |
61 "statement_unittest.cc", | 62 "statement_unittest.cc", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 #'target_name': 'sql_unittests_apk', | 94 #'target_name': 'sql_unittests_apk', |
94 #'type': 'none', | 95 #'type': 'none', |
95 #'dependencies': [ | 96 #'dependencies': [ |
96 # 'sql_unittests', | 97 # 'sql_unittests', |
97 #], | 98 #], |
98 #'variables': { | 99 #'variables': { |
99 # 'test_suite_name': 'sql_unittests', | 100 # 'test_suite_name': 'sql_unittests', |
100 #}, | 101 #}, |
101 #'includes': [ '../build/apk_test.gypi' ], | 102 #'includes': [ '../build/apk_test.gypi' ], |
102 } | 103 } |
OLD | NEW |