blob: b45793902d5c6425595f4a2a016f67effad5f14f [file] [log] [blame]
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//extensions/buildflags/buildflags.gni")
assert(enable_extensions_core,
"Cannot depend on extensions because enable_extensions_core=false.")
source_set("dns") {
sources = [
"dns_api.cc",
"dns_api.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
public_deps = [
"//extensions/browser:browser_sources",
"//mojo/public/cpp/bindings",
"//net",
"//services/network/public/cpp",
"//services/network/public/mojom",
]
deps = [
"//base",
"//content/public/browser",
"//extensions/common/api",
"//url",
]
}