| 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 "connection_memory_dump_provider.cc", |
| 12 "connection_memory_dump_provider.h", |
| 11 "error_delegate_util.cc", | 13 "error_delegate_util.cc", |
| 12 "error_delegate_util.h", | 14 "error_delegate_util.h", |
| 13 "init_status.h", | 15 "init_status.h", |
| 14 "meta_table.cc", | 16 "meta_table.cc", |
| 15 "meta_table.h", | 17 "meta_table.h", |
| 16 "recovery.cc", | 18 "recovery.cc", |
| 17 "recovery.h", | 19 "recovery.h", |
| 18 "sql_memory_dump_provider.cc", | 20 "sql_memory_dump_provider.cc", |
| 19 "sql_memory_dump_provider.h", | 21 "sql_memory_dump_provider.h", |
| 20 "statement.cc", | 22 "statement.cc", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 #'target_name': 'sql_unittests_apk', | 130 #'target_name': 'sql_unittests_apk', |
| 129 #'type': 'none', | 131 #'type': 'none', |
| 130 #'dependencies': [ | 132 #'dependencies': [ |
| 131 # 'sql_unittests', | 133 # 'sql_unittests', |
| 132 #], | 134 #], |
| 133 #'variables': { | 135 #'variables': { |
| 134 # 'test_suite_name': 'sql_unittests', | 136 # 'test_suite_name': 'sql_unittests', |
| 135 #}, | 137 #}, |
| 136 #'includes': [ '../build/apk_test.gypi' ], | 138 #'includes': [ '../build/apk_test.gypi' ], |
| 137 } | 139 } |
| OLD | NEW |