OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 11 matching lines...) Expand all Loading... |
22 'sources': [ | 22 'sources': [ |
23 'connection.cc', | 23 'connection.cc', |
24 'connection.h', | 24 'connection.h', |
25 'error_delegate_util.cc', | 25 'error_delegate_util.cc', |
26 'error_delegate_util.h', | 26 'error_delegate_util.h', |
27 'init_status.h', | 27 'init_status.h', |
28 'meta_table.cc', | 28 'meta_table.cc', |
29 'meta_table.h', | 29 'meta_table.h', |
30 'recovery.cc', | 30 'recovery.cc', |
31 'recovery.h', | 31 'recovery.h', |
| 32 'sql_memory_dump_provider.cc', |
| 33 'sql_memory_dump_provider.h', |
32 'statement.cc', | 34 'statement.cc', |
33 'statement.h', | 35 'statement.h', |
34 'transaction.cc', | 36 'transaction.cc', |
35 'transaction.h', | 37 'transaction.h', |
36 ], | 38 ], |
37 'include_dirs': [ | 39 'include_dirs': [ |
38 '..', | 40 '..', |
39 ], | 41 ], |
40 'direct_dependent_settings': { | 42 'direct_dependent_settings': { |
41 'include_dirs': [ | 43 'include_dirs': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'sql', | 84 'sql', |
83 'test_support_sql', | 85 'test_support_sql', |
84 '../base/base.gyp:test_support_base', | 86 '../base/base.gyp:test_support_base', |
85 '../testing/gtest.gyp:gtest', | 87 '../testing/gtest.gyp:gtest', |
86 '../third_party/sqlite/sqlite.gyp:sqlite', | 88 '../third_party/sqlite/sqlite.gyp:sqlite', |
87 ], | 89 ], |
88 'sources': [ | 90 'sources': [ |
89 'connection_unittest.cc', | 91 'connection_unittest.cc', |
90 'meta_table_unittest.cc', | 92 'meta_table_unittest.cc', |
91 'recovery_unittest.cc', | 93 'recovery_unittest.cc', |
| 94 'sql_memory_dump_provider_unittest.cc', |
92 'sqlite_features_unittest.cc', | 95 'sqlite_features_unittest.cc', |
93 'statement_unittest.cc', | 96 'statement_unittest.cc', |
94 'test/paths.cc', | 97 'test/paths.cc', |
95 'test/paths.h', | 98 'test/paths.h', |
96 'test/run_all_unittests.cc', | 99 'test/run_all_unittests.cc', |
97 'test/sql_test_base.cc', | 100 'test/sql_test_base.cc', |
98 'test/sql_test_base.h', | 101 'test/sql_test_base.h', |
99 'test/sql_test_suite.cc', | 102 'test/sql_test_suite.cc', |
100 'test/sql_test_suite.h', | 103 'test/sql_test_suite.h', |
101 'transaction_unittest.cc', | 104 'transaction_unittest.cc', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 '../build/isolate.gypi', | 174 '../build/isolate.gypi', |
172 ], | 175 ], |
173 'sources': [ | 176 'sources': [ |
174 'sql_unittests.isolate', | 177 'sql_unittests.isolate', |
175 ], | 178 ], |
176 }, | 179 }, |
177 ], | 180 ], |
178 }], | 181 }], |
179 ], | 182 ], |
180 } | 183 } |
OLD | NEW |