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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 | « components/clipboard/main.cc ('k') | components/devtools_service/DEPS » ('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", 9 "devtools_agent_host.cc",
10 "devtools_agent_host.h", 10 "devtools_agent_host.h",
11 "devtools_http_server.cc", 11 "devtools_http_server.cc",
12 "devtools_http_server.h", 12 "devtools_http_server.h",
13 "devtools_registry_impl.cc", 13 "devtools_registry_impl.cc",
14 "devtools_registry_impl.h", 14 "devtools_registry_impl.h",
15 "devtools_service.cc", 15 "devtools_service.cc",
16 "devtools_service.h", 16 "devtools_service.h",
17 "devtools_service_delegate.cc", 17 "devtools_service_delegate.cc",
18 "devtools_service_delegate.h", 18 "devtools_service_delegate.h",
19 ] 19 ]
20 20
21 deps = [ 21 deps = [
22 "//base", 22 "//base",
23 "//components/devtools_service/public/interfaces", 23 "//components/devtools_service/public/interfaces",
24 "//mojo/application/public/cpp",
25 "//mojo/common", 24 "//mojo/common",
26 "//mojo/public/cpp/bindings", 25 "//mojo/public/cpp/bindings",
27 "//mojo/public/cpp/bindings:callback", 26 "//mojo/public/cpp/bindings:callback",
28 "//mojo/public/cpp/system", 27 "//mojo/public/cpp/system",
29 "//mojo/services/network/public/cpp", 28 "//mojo/services/network/public/cpp",
30 "//mojo/services/network/public/interfaces", 29 "//mojo/services/network/public/interfaces",
30 "//mojo/shell/public/cpp",
31 "//url", 31 "//url",
32 ] 32 ]
33 } 33 }
34 34
35 mojo_native_application("devtools_service") { 35 mojo_native_application("devtools_service") {
36 sources = [ 36 sources = [
37 "main.cc", 37 "main.cc",
38 ] 38 ]
39 39
40 avoid_runner_cycle = true 40 avoid_runner_cycle = true
41 41
42 deps = [ 42 deps = [
43 ":lib", 43 ":lib",
44 "//mojo/application/public/cpp", 44 "//mojo/shell/public/cpp",
45 ] 45 ]
46 } 46 }
OLDNEW
« no previous file with comments | « components/clipboard/main.cc ('k') | components/devtools_service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698