Tweak logging statements in fetch_build.py.
[chromium-blink-merge.git] / sql / sql.gyp
blob711abf9d3001dc7cb82e938a4c33c86027bed51b
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'sql',
12       'type': '<(component)',
13       'dependencies': [
14         '../base/base.gyp:base',
15         '../third_party/sqlite/sqlite.gyp:sqlite',
16         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
17       ],
18       'export_dependent_settings': [
19         '../base/base.gyp:base',
20       ],
21       'defines': [ 'SQL_IMPLEMENTATION' ],
22       'sources': [
23         'connection.cc',
24         'connection.h',
25         'error_delegate_util.cc',
26         'error_delegate_util.h',
27         'init_status.h',
28         'meta_table.cc',
29         'meta_table.h',
30         'recovery.cc',
31         'recovery.h',
32         'statement.cc',
33         'statement.h',
34         'transaction.cc',
35         'transaction.h',
36       ],
37       'include_dirs': [
38         '..',
39       ],
40       'direct_dependent_settings': {
41         'include_dirs': [
42           '..',
43         ],
44       },
45       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
46       'msvs_disabled_warnings': [4267, ],
47     },
48     {
49       'target_name': 'test_support_sql',
50       'type': 'static_library',
51       'dependencies': [
52         'sql',
53         '../base/base.gyp:base',
54         '../testing/gtest.gyp:gtest',
55         '../third_party/sqlite/sqlite.gyp:sqlite',
56       ],
57       'export_dependent_settings': [
58         'sql',
59         '../base/base.gyp:base',
60       ],
61       'sources': [
62         'test/error_callback_support.cc',
63         'test/error_callback_support.h',
64         'test/scoped_error_ignorer.cc',
65         'test/scoped_error_ignorer.h',
66         'test/test_helpers.cc',
67         'test/test_helpers.h',
68       ],
69       'include_dirs': [
70         '..',
71       ],
72       'direct_dependent_settings': {
73         'include_dirs': [
74           '..',
75         ],
76       },
77     },
78     {
79       'target_name': 'sql_unittests',
80       'type': '<(gtest_target_type)',
81       'dependencies': [
82         'sql',
83         'test_support_sql',
84         '../base/base.gyp:test_support_base',
85         '../testing/gtest.gyp:gtest',
86         '../third_party/sqlite/sqlite.gyp:sqlite',
87       ],
88       'sources': [
89         'connection_unittest.cc',
90         'meta_table_unittest.cc',
91         'recovery_unittest.cc',
92         'sqlite_features_unittest.cc',
93         'statement_unittest.cc',
94         'test/paths.cc',
95         'test/paths.h',
96         'test/run_all_unittests.cc',
97         'test/sql_test_suite.cc',
98         'test/sql_test_suite.h',
99         'transaction_unittest.cc',
100       ],
101       'include_dirs': [
102         '..',
103       ],
104       'conditions': [
105         ['os_posix==1 and OS!="mac" and OS!="ios"', {
106           'conditions': [
107             ['use_allocator!="none"', {
108               'dependencies': [
109                 '../base/allocator/allocator.gyp:allocator',
110               ],
111             }],
112           ],
113         }],
114         ['OS == "android"', {
115           'dependencies': [
116             '../testing/android/native_test.gyp:native_test_native_code',
117           ],
118         }],
119         ['sqlite_enable_fts2', {
120           'defines': [
121             'SQLITE_ENABLE_FTS2',
122           ],
123         }],
124       ],
125       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
126       'msvs_disabled_warnings': [4267, ],
127     },
128   ],
129   'conditions': [
130     ['OS == "android"', {
131       'targets': [
132         {
133           'target_name': 'sql_unittests_apk',
134           'type': 'none',
135           'dependencies': [
136             'sql_unittests',
137           ],
138           'variables': {
139             'test_suite_name': 'sql_unittests',
140           },
141           'includes': [ '../build/apk_test.gypi' ],
142         },
143       ],
144     }],
145     ['test_isolation_mode != "noop"', {
146       'targets': [
147         {
148           'target_name': 'sql_unittests_run',
149           'type': 'none',
150           'dependencies': [
151             'sql_unittests',
152           ],
153           'includes': [
154             '../build/isolate.gypi',
155           ],
156           'sources': [
157             'sql_unittests.isolate',
158           ],
159         },
160       ],
161     }],
162   ],