| 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/rules.gni") |
| 6 |
| 5 component("sql") { | 7 component("sql") { |
| 6 sources = [ | 8 sources = [ |
| 7 "connection.cc", | 9 "connection.cc", |
| 8 "connection.h", | 10 "connection.h", |
| 9 "error_delegate_util.cc", | 11 "error_delegate_util.cc", |
| 10 "error_delegate_util.h", | 12 "error_delegate_util.h", |
| 11 "init_status.h", | 13 "init_status.h", |
| 12 "meta_table.cc", | 14 "meta_table.cc", |
| 13 "meta_table.h", | 15 "meta_table.h", |
| 14 "recovery.cc", | 16 "recovery.cc", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 #'target_name': 'sql_unittests_apk', | 93 #'target_name': 'sql_unittests_apk', |
| 92 #'type': 'none', | 94 #'type': 'none', |
| 93 #'dependencies': [ | 95 #'dependencies': [ |
| 94 # 'sql_unittests', | 96 # 'sql_unittests', |
| 95 #], | 97 #], |
| 96 #'variables': { | 98 #'variables': { |
| 97 # 'test_suite_name': 'sql_unittests', | 99 # 'test_suite_name': 'sql_unittests', |
| 98 #}, | 100 #}, |
| 99 #'includes': [ '../build/apk_test.gypi' ], | 101 #'includes': [ '../build/apk_test.gypi' ], |
| 100 } | 102 } |
| OLD | NEW |