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

Side by Side Diff: mojo/public/cpp/application/BUILD.gn

Issue 599283003: Make gn check //mojo/public/* pass (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « mojo/public/c/system/tests/BUILD.gn ('k') | mojo/public/cpp/bindings/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # GYP version: mojo/mojo_public.gypi:mojo_application_base 5 # GYP version: mojo/mojo_public.gypi:mojo_application_base
6 source_set("application") { 6 source_set("application") {
7 sources = [ 7 sources = [
8 "application_connection.h", 8 "application_connection.h",
9 "application_delegate.h", 9 "application_delegate.h",
10 "application_impl.h", 10 "application_impl.h",
11 "connect.h", 11 "connect.h",
12 "service_provider_impl.h", 12 "service_provider_impl.h",
13 "interface_factory.h", 13 "interface_factory.h",
14 "interface_factory_impl.h", 14 "interface_factory_impl.h",
15 "lib/application_connection.cc", 15 "lib/application_connection.cc",
16 "lib/application_delegate.cc", 16 "lib/application_delegate.cc",
17 "lib/application_impl.cc", 17 "lib/application_impl.cc",
18 "lib/service_provider_impl.cc", 18 "lib/service_provider_impl.cc",
19 "lib/service_connector.cc", 19 "lib/service_connector.cc",
20 "lib/service_connector.h", 20 "lib/service_connector.h",
21 "lib/service_registry.cc", 21 "lib/service_registry.cc",
22 "lib/service_registry.h", 22 "lib/service_registry.h",
23 "lib/weak_service_provider.cc", 23 "lib/weak_service_provider.cc",
24 "lib/weak_service_provider.h", 24 "lib/weak_service_provider.h",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 "//mojo/public/cpp/bindings", 28 "//mojo/public/cpp/bindings",
29 "//mojo/public/cpp/environment",
30 "//mojo/public/cpp/system",
29 "//mojo/public/interfaces/application", 31 "//mojo/public/interfaces/application",
30 ] 32 ]
31 } 33 }
32 34
33 # GYP version: mojo/mojo_public.gypi:mojo_application_standalone 35 # GYP version: mojo/mojo_public.gypi:mojo_application_standalone
34 source_set("standalone") { 36 source_set("standalone") {
35 sources = [ 37 sources = [
36 "lib/application_runner.cc" 38 "lib/application_runner.cc"
37 ] 39 ]
38 40
41 public_deps = [ ":application" ]
42
39 deps = [ 43 deps = [
40 ":application",
41 "//mojo/public/cpp/environment:standalone", 44 "//mojo/public/cpp/environment:standalone",
45 "//mojo/public/cpp/utility",
42 ] 46 ]
43 } 47 }
OLDNEW
« no previous file with comments | « mojo/public/c/system/tests/BUILD.gn ('k') | mojo/public/cpp/bindings/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698