mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
37 lines
793 B
Plaintext
37 lines
793 B
Plaintext
# Copyright 2017 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.
|
|
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
source_set("bluetooth_internals") {
|
|
sources = [
|
|
"bluetooth_internals_handler.cc",
|
|
"bluetooth_internals_handler.h",
|
|
"bluetooth_internals_ui.cc",
|
|
"bluetooth_internals_ui.h",
|
|
]
|
|
|
|
public_deps = [
|
|
"//device/bluetooth:deprecated_experimental_mojo",
|
|
]
|
|
|
|
deps = [
|
|
":mojo_bindings",
|
|
"//chrome/common",
|
|
"//content/public/browser",
|
|
"//device/bluetooth",
|
|
"//ui/webui",
|
|
]
|
|
}
|
|
|
|
mojom("mojo_bindings") {
|
|
sources = [
|
|
"bluetooth_internals.mojom",
|
|
]
|
|
|
|
deps = [
|
|
"//device/bluetooth/public/mojom:deprecated_experimental_interfaces",
|
|
]
|
|
}
|