ServiceWorker: Add ServiceWorkerEnv to collect leveldb errors only by ServiceWorker
[chromium-blink-merge.git] / sql / BUILD.gn
blobf3c44be98e03844a8713623ae9ca564661341253
1 # Copyright 2014 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.
5 import("//testing/test.gni")
7 component("sql") {
8   sources = [
9     "connection.cc",
10     "connection.h",
11     "error_delegate_util.cc",
12     "error_delegate_util.h",
13     "init_status.h",
14     "meta_table.cc",
15     "meta_table.h",
16     "proxy.cc",
17     "proxy.h",
18     "recovery.cc",
19     "recovery.h",
20     "statement.cc",
21     "statement.h",
22     "transaction.cc",
23     "transaction.h",
24   ]
26   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
27   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
29   defines = [ "SQL_IMPLEMENTATION" ]
31   deps = [
32     "//base",
33     "//third_party/sqlite",
34     "//base/third_party/dynamic_annotations",
35   ]
38 source_set("test_support") {
39   testonly = true
40   sources = [
41     "test/error_callback_support.cc",
42     "test/error_callback_support.h",
43     "test/scoped_error_ignorer.cc",
44     "test/scoped_error_ignorer.h",
45     "test/test_helpers.cc",
46     "test/test_helpers.h",
47   ]
49   deps = [
50     ":sql",
51     "//base",
52     "//testing/gtest",
53     "//third_party/sqlite",
54   ]
57 test("sql_unittests") {
58   sources = [
59     "connection_unittest.cc",
60     "meta_table_unittest.cc",
61     "recovery_unittest.cc",
62     "sqlite_features_unittest.cc",
63     "statement_unittest.cc",
64     "test/paths.cc",
65     "test/paths.h",
66     "test/run_all_unittests.cc",
67     "test/sql_test_suite.cc",
68     "test/sql_test_suite.h",
69     "transaction_unittest.cc",
70   ]
72   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
73   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
75   deps = [
76     ":sql",
77     ":test_support",
78     "//base/allocator",
79     "//base/test:test_support",
80     "//testing/gtest",
81     "//third_party/sqlite",
82   ]
84   if (is_android) {
85     isolate_file = "sql_unittests.isolate"
86   }
88   # TODO(GYP)
89   #['OS == "android"', {
90   #  'dependencies': [
91   #    '../testing/android/native_test.gyp:native_test_native_code',
92   #  ],
93   #}],
96 if (is_android) {
97   #TODO(GYP)
98   #'target_name': 'sql_unittests_apk',
99   #'type': 'none',
100   #'dependencies': [
101   #  'sql_unittests',
102   #],
103   #'variables': {
104   #  'test_suite_name': 'sql_unittests',
105   #},
106   #'includes': [ '../build/apk_test.gypi' ],