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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
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", 24 "//mojo/application/public/cpp",
25 "//mojo/common", 25 "//mojo/common",
26 "//mojo/public/cpp/bindings",
27 "//mojo/public/cpp/bindings:callback",
28 "//mojo/public/cpp/system",
26 "//mojo/services/network/public/cpp", 29 "//mojo/services/network/public/cpp",
27 "//mojo/services/network/public/interfaces", 30 "//mojo/services/network/public/interfaces",
28 "//third_party/mojo/src/mojo/public/cpp/bindings",
29 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
30 "//third_party/mojo/src/mojo/public/cpp/system",
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/application/public/cpp",
45 ] 45 ]
46 } 46 }
OLDNEW
« no previous file with comments | « components/data_reduction_proxy/content/browser/BUILD.gn ('k') | components/devtools_service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698