Clean up extension confirmation prompts and make them consistent between Views and...
[chromium-blink-merge.git] / components / devtools_service / BUILD.gn
bloba08eadb0008066f3ce962b32b83c3a7a01c24cf5
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//mojo/public/mojo_application.gni")
7 source_set("lib") {
8   sources = [
9     "devtools_agent_host.cc",
10     "devtools_agent_host.h",
11     "devtools_http_server.cc",
12     "devtools_http_server.h",
13     "devtools_registry_impl.cc",
14     "devtools_registry_impl.h",
15     "devtools_service.cc",
16     "devtools_service.h",
17     "devtools_service_delegate.cc",
18     "devtools_service_delegate.h",
19   ]
21   deps = [
22     "//base",
23     "//components/devtools_service/public/interfaces",
24     "//mojo/application/public/cpp",
25     "//mojo/common",
26     "//mojo/services/network/public/cpp",
27     "//mojo/services/network/public/interfaces",
28     "//third_party/mojo/src/mojo/public/cpp/bindings",
29     "//url",
30   ]
33 mojo_native_application("devtools_service") {
34   sources = [
35     "main.cc",
36   ]
38   deps = [
39     ":lib",
40     "//mojo/application/public/cpp",
41   ]