summaryrefslogtreecommitdiffstats
path: root/components/devtools_service/BUILD.gn
blob: 1c524fb37adfee2b069904613cb84bc0e9a3a6ea (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
42
43
44
45
46
# Copyright 2015 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/mojo_application.gni")

source_set("lib") {
  sources = [
    "devtools_agent_host.cc",
    "devtools_agent_host.h",
    "devtools_http_server.cc",
    "devtools_http_server.h",
    "devtools_registry_impl.cc",
    "devtools_registry_impl.h",
    "devtools_service.cc",
    "devtools_service.h",
    "devtools_service_delegate.cc",
    "devtools_service_delegate.h",
  ]

  deps = [
    "//base",
    "//components/devtools_service/public/interfaces",
    "//mojo/common",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/bindings:callback",
    "//mojo/public/cpp/system",
    "//mojo/services/network/public/cpp",
    "//mojo/services/network/public/interfaces",
    "//mojo/shell/public/cpp",
    "//url",
  ]
}

mojo_native_application("devtools_service") {
  sources = [
    "main.cc",
  ]

  avoid_runner_cycle = true

  deps = [
    ":lib",
    "//mojo/shell/public/cpp",
  ]
}