blob: f40a8f0e961965e455d24c44eeaa364506990f8a [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,
"Cannot depend on extensions because enable_extensions=false.")
source_set("sockets_udp") {
sources = [
"sockets_udp_api.cc",
"sockets_udp_api.h",
"udp_socket_event_dispatcher.cc",
"udp_socket_event_dispatcher.h",
]
deps = [
"//extensions/browser/api",
"//extensions/browser/api/socket",
"//extensions/common",
"//extensions/common/api",
]
public_deps = [ "//extensions/browser:browser_sources" ]
}