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", |
11 "error_delegate_util.cc", | 11 "error_delegate_util.cc", |
12 "error_delegate_util.h", | 12 "error_delegate_util.h", |
13 "init_status.h", | 13 "init_status.h", |
14 "meta_table.cc", | 14 "meta_table.cc", |
15 "meta_table.h", | 15 "meta_table.h", |
16 "proxy.cc", | |
17 "proxy.h", | |
18 "recovery.cc", | 16 "recovery.cc", |
19 "recovery.h", | 17 "recovery.h", |
20 "statement.cc", | 18 "statement.cc", |
21 "statement.h", | 19 "statement.h", |
22 "transaction.cc", | 20 "transaction.cc", |
23 "transaction.h", | 21 "transaction.h", |
24 ] | 22 ] |
25 | 23 |
26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 24 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
27 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 25 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 #'target_name': 'sql_unittests_apk', | 123 #'target_name': 'sql_unittests_apk', |
126 #'type': 'none', | 124 #'type': 'none', |
127 #'dependencies': [ | 125 #'dependencies': [ |
128 # 'sql_unittests', | 126 # 'sql_unittests', |
129 #], | 127 #], |
130 #'variables': { | 128 #'variables': { |
131 # 'test_suite_name': 'sql_unittests', | 129 # 'test_suite_name': 'sql_unittests', |
132 #}, | 130 #}, |
133 #'includes': [ '../build/apk_test.gypi' ], | 131 #'includes': [ '../build/apk_test.gypi' ], |
134 } | 132 } |
OLD | NEW |