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 component("sql") { | 5 component("sql") { |
6 sources = [ | 6 sources = [ |
7 "connection.cc", | 7 "connection.cc", |
8 "connection.h", | 8 "connection.h", |
9 "error_delegate_util.cc", | 9 "error_delegate_util.cc", |
10 "error_delegate_util.h", | 10 "error_delegate_util.h", |
(...skipping 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 | 27 |
28 deps = [ | 28 deps = [ |
29 "//base", | 29 "//base", |
30 "//third_party/sqlite", | 30 "//third_party/sqlite", |
31 "//base/third_party/dynamic_annotations", | 31 "//base/third_party/dynamic_annotations", |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 source_set("test_support") { | 35 source_set("test_support") { |
| 36 testonly = true |
36 sources = [ | 37 sources = [ |
37 "test/error_callback_support.cc", | 38 "test/error_callback_support.cc", |
38 "test/error_callback_support.h", | 39 "test/error_callback_support.h", |
39 "test/scoped_error_ignorer.cc", | 40 "test/scoped_error_ignorer.cc", |
40 "test/scoped_error_ignorer.h", | 41 "test/scoped_error_ignorer.h", |
41 "test/test_helpers.cc", | 42 "test/test_helpers.cc", |
42 "test/test_helpers.h", | 43 "test/test_helpers.h", |
43 ] | 44 ] |
44 | 45 |
45 deps = [ | 46 deps = [ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 #'target_name': 'sql_unittests_apk', | 91 #'target_name': 'sql_unittests_apk', |
91 #'type': 'none', | 92 #'type': 'none', |
92 #'dependencies': [ | 93 #'dependencies': [ |
93 # 'sql_unittests', | 94 # 'sql_unittests', |
94 #], | 95 #], |
95 #'variables': { | 96 #'variables': { |
96 # 'test_suite_name': 'sql_unittests', | 97 # 'test_suite_name': 'sql_unittests', |
97 #}, | 98 #}, |
98 #'includes': [ '../build/apk_test.gypi' ], | 99 #'includes': [ '../build/apk_test.gypi' ], |
99 } | 100 } |
OLD | NEW |