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 'proxy.cc', |
| 31 'proxy.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 '../build/isolate.gypi', | 154 '../build/isolate.gypi', |
153 ], | 155 ], |
154 'sources': [ | 156 'sources': [ |
155 'sql_unittests.isolate', | 157 'sql_unittests.isolate', |
156 ], | 158 ], |
157 }, | 159 }, |
158 ], | 160 ], |
159 }], | 161 }], |
160 ], | 162 ], |
161 } | 163 } |
OLD | NEW |