Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Side by Side Diff: components/devtools_service/BUILD.gn

Issue 1164383002: Mandoline DevTools service: remote debugging protocol over HTTP/WebSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/devtools_service/devtools_agent_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 source_set("lib") { 7 source_set("lib") {
8 sources = [ 8 sources = [
9 "devtools_agent_host.cc",
10 "devtools_agent_host.h",
9 "devtools_http_server.cc", 11 "devtools_http_server.cc",
10 "devtools_http_server.h", 12 "devtools_http_server.h",
11 "devtools_registry_impl.cc", 13 "devtools_registry_impl.cc",
12 "devtools_registry_impl.h", 14 "devtools_registry_impl.h",
13 "devtools_service.cc", 15 "devtools_service.cc",
14 "devtools_service.h", 16 "devtools_service.h",
15 "devtools_service_delegate.cc", 17 "devtools_service_delegate.cc",
16 "devtools_service_delegate.h", 18 "devtools_service_delegate.h",
17 ] 19 ]
18 20
19 deps = [ 21 deps = [
20 "//base", 22 "//base",
21 "//components/devtools_service/public/interfaces", 23 "//components/devtools_service/public/interfaces",
22 "//mojo/application/public/cpp", 24 "//mojo/application/public/cpp",
23 "//mojo/common", 25 "//mojo/common",
26 "//mojo/services/network/public/cpp",
24 "//mojo/services/network/public/interfaces", 27 "//mojo/services/network/public/interfaces",
25 "//third_party/mojo/src/mojo/public/cpp/bindings", 28 "//third_party/mojo/src/mojo/public/cpp/bindings",
26 "//url", 29 "//url",
27 ] 30 ]
28 } 31 }
29 32
30 mojo_native_application("devtools_service") { 33 mojo_native_application("devtools_service") {
31 sources = [ 34 sources = [
32 "main.cc", 35 "main.cc",
33 ] 36 ]
34 37
35 deps = [ 38 deps = [
36 ":lib", 39 ":lib",
37 "//mojo/application/public/cpp", 40 "//mojo/application/public/cpp",
38 ] 41 ]
39 } 42 }
OLDNEW
« no previous file with comments | « no previous file | components/devtools_service/devtools_agent_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698