chromium/components/blocklist/opt_out_blocklist/sql/BUILD.gn

# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("opt_out_blocklist_sql") {
  sources = [
    "opt_out_store_sql.cc",
    "opt_out_store_sql.h",
  ]

  deps = [
    "//base",
    "//components/blocklist/opt_out_blocklist:opt_out_blocklist",
    "//sql",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "opt_out_store_sql_unittest.cc" ]

  deps = [
    ":opt_out_blocklist_sql",
    "//base",
    "//base/test:test_support",
    "//components/blocklist/opt_out_blocklist:opt_out_blocklist",
    "//sql",
    "//sql:test_support",
    "//testing/gmock",
    "//testing/gtest",
  ]
}