Update GPU benchmarking extension to not copy Persistent handles.
[chromium-blink-merge.git] / sql / sql.gyp
blob86cfbc9160c71ebb123acbca8aba9453c80d0e43
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       ],
17       'defines': [ 'SQL_IMPLEMENTATION' ],
18       'sources': [
19         'connection.cc',
20         'connection.h',
21         'error_delegate_util.cc',
22         'error_delegate_util.h',
23         'init_status.h',
24         'meta_table.cc',
25         'meta_table.h',
26         'statement.cc',
27         'statement.h',
28         'transaction.cc',
29         'transaction.h',
30       ],
31       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
32       'msvs_disabled_warnings': [4267, ],
33     },
34     {
35       'target_name': 'sql_unittests',
36       'type': '<(gtest_target_type)',
37       'dependencies': [
38         'sql',
39         '../base/base.gyp:test_support_base',
40         '../testing/gtest.gyp:gtest',
41       ],
42       'sources': [
43         'run_all_unittests.cc',
44         'connection_unittest.cc',
45         'sqlite_features_unittest.cc',
46         'statement_unittest.cc',
47         'transaction_unittest.cc',
48       ],
49       'include_dirs': [
50         '..',
51       ],
52       'conditions': [
53         ['os_posix==1 and OS!="mac" and OS!="ios"', {
54           'conditions': [
55             ['linux_use_tcmalloc==1', {
56               'dependencies': [
57                 '../base/allocator/allocator.gyp:allocator',
58               ],
59             }],
60           ],
61         }],
62         ['OS == "android" and gtest_target_type == "shared_library"', {
63           'dependencies': [
64             '../testing/android/native_test.gyp:native_test_native_code',
65           ],
66         }],
67       ],
68       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
69       'msvs_disabled_warnings': [4267, ],
70     },
71   ],
72   'conditions': [
73     # Special target to wrap a gtest_target_type==shared_library
74     # sql_unittests into an android apk for execution.
75     ['OS == "android" and gtest_target_type == "shared_library"', {
76       'targets': [
77         {
78           'target_name': 'sql_unittests_apk',
79           'type': 'none',
80           'dependencies': [
81             'sql_unittests',
82           ],
83           'variables': {
84             'test_suite_name': 'sql_unittests',
85             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unittests<(SHARED_LIB_SUFFIX)',
86           },
87           'includes': [ '../build/apk_test.gypi' ],
88         },
89       ],
90     }],
91   ],