summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/ui/webui/bluetooth_internals/BUILD.gn
blob: 210d8f365ed00e524268c361fca04c09fe0ce311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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/browser/resources/bluetooth_internals:resources",
    "//chrome/common",
    "//content/public/browser",
    "//device/bluetooth",
    "//ui/webui",
  ]

  if (is_chromeos) {
    deps += [ "//chrome/browser/chromeos" ]
  }
}

mojom("mojo_bindings") {
  sources = [
    "bluetooth_internals.mojom",
  ]

  deps = [
    "//device/bluetooth/public/mojom:deprecated_experimental_interfaces",
  ]
}