# 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.") assert(is_chromeos, "This target should only be built for ChromeOS") source_set("bluetooth_socket") { sources = [ "bluetooth_api_socket.cc", "bluetooth_api_socket.h", "bluetooth_socket_api.cc", "bluetooth_socket_api.h", "bluetooth_socket_event_dispatcher.cc", "bluetooth_socket_event_dispatcher.h", ] configs += [ "//build/config/compiler:wexit_time_destructors" ] public_deps = [ "//base", "//content/public/browser", "//device/bluetooth", "//device/bluetooth/public/cpp", "//extensions/browser:browser_sources", "//extensions/common", "//extensions/common/api", ] deps = [ "//net" ] }