naiveproxy/components/blacklist/opt_out_blacklist/BUILD.gn

36 lines
738 B
Plaintext
Raw Normal View History

2018-08-15 01:19:20 +03:00
# Copyright 2018 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.
static_library("opt_out_blacklist") {
sources = [
"opt_out_blacklist.cc",
"opt_out_blacklist.h",
"opt_out_blacklist_data.cc",
"opt_out_blacklist_data.h",
"opt_out_blacklist_item.cc",
"opt_out_blacklist_item.h",
"opt_out_store.h",
]
deps = [
"//base",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"opt_out_blacklist_item_unittest.cc",
"opt_out_blacklist_unittest.cc",
]
deps = [
":opt_out_blacklist",
"//base",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}