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 { |
11 'target_name': 'sql', | 11 'target_name': 'sql', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../third_party/sqlite/sqlite.gyp:sqlite', | 15 '../third_party/sqlite/sqlite.gyp:sqlite', |
16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
17 ], | 17 ], |
18 'export_dependent_settings': [ | 18 'export_dependent_settings': [ |
19 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
20 ], | 20 ], |
21 'defines': [ 'SQL_IMPLEMENTATION' ], | 21 'defines': [ 'SQL_IMPLEMENTATION' ], |
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 'process_memory_dump_provider.cc', |
| 31 'process_memory_dump_provider.h', |
30 'recovery.cc', | 32 'recovery.cc', |
31 'recovery.h', | 33 'recovery.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 ], |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 'dependencies': [ | 83 'dependencies': [ |
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', |
| 93 'process_memory_dump_provider_unittest.cc', |
91 'recovery_unittest.cc', | 94 'recovery_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', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 '../build/isolate.gypi', | 155 '../build/isolate.gypi', |
153 ], | 156 ], |
154 'sources': [ | 157 'sources': [ |
155 'sql_unittests.isolate', | 158 'sql_unittests.isolate', |
156 ], | 159 ], |
157 }, | 160 }, |
158 ], | 161 ], |
159 }], | 162 }], |
160 ], | 163 ], |
161 } | 164 } |
OLD | NEW |