summaryrefslogtreecommitdiffstats
path: root/sql/mojo/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'sql/mojo/BUILD.gn')
-rw-r--r--sql/mojo/BUILD.gn62
1 files changed, 0 insertions, 62 deletions
diff --git a/sql/mojo/BUILD.gn b/sql/mojo/BUILD.gn
deleted file mode 100644
index b7a3793..0000000
--- a/sql/mojo/BUILD.gn
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//mojo/public/mojo_application.gni")
-
-source_set("mojo") {
- sources = [
- "mojo_vfs.cc",
- "mojo_vfs.h",
- ]
-
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
- defines = [ "SQL_IMPLEMENTATION" ]
-
- deps = [
- "//base",
- "//base/third_party/dynamic_annotations",
- "//components/filesystem/public/interfaces",
- "//mojo/common",
- "//mojo/platform_handle",
- "//mojo/shell/public/cpp",
- "//third_party/sqlite",
- ]
-}
-
-mojo_native_application("apptests") {
- output_name = "sql_apptests"
-
- testonly = true
-
- # Instead of using the code in //sql/test/sql_test_base.h, we should use the
- # mojo test base class.
- defines = [ "MOJO_APPTEST_IMPL" ]
-
- sources = [
- "../connection_unittest.cc",
- "../statement_unittest.cc",
- "../test/paths.cc",
- "../test/paths.h",
- "../transaction_unittest.cc",
- "sql_test_base.cc",
- "sql_test_base.h",
- "vfs_unittest.cc",
- ]
-
- deps = [
- ":mojo",
- "//base",
- "//base/test:test_support",
- "//components/filesystem/public/interfaces",
- "//mojo/public/cpp/bindings",
- "//mojo/shell/public/cpp:sources",
- "//mojo/shell/public/cpp:test_support",
- "//sql",
- "//sql:redirection_header",
- "//sql:test_support",
- "//testing/gtest:gtest",
- ]
-}