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

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

Issue 443063003: Revert 287680 "mojo: terminate apps if the shell goes away" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/mojo/public/BUILD.gn ('k') | trunk/src/mojo/public/cpp/application/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 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 source_set("base") { 5 source_set("application") {
6 sources = [ 6 sources = [
7 "application_impl.h", 7 "application_impl.h",
8 "connect.h", 8 "connect.h",
9 "lib/application_impl.cc", 9 "lib/application_impl.cc",
10 "lib/service_connector.cc", 10 "lib/service_connector.cc",
11 "lib/service_connector.h", 11 "lib/service_connector.h",
12 "lib/application_connection.cc", 12 "lib/application_connection.cc",
13 "lib/application_delegate.cc", 13 "lib/application_delegate.cc",
14 "lib/service_registry.cc", 14 "lib/service_registry.cc",
15 "lib/service_registry.h", 15 "lib/service_registry.h",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//mojo/public/cpp/bindings", 19 "//mojo/public/cpp/bindings",
20 "//mojo/public/interfaces/application", 20 "//mojo/public/interfaces/application",
21 ] 21 ]
22 } 22 }
23 23
24 source_set("chromium") {
25 sources = [
26 "lib/application_impl_chromium.cc"
27 ]
28
29 deps = [ ":base" ]
30 }
31
32 source_set("standalone") {
33 sources = [
34 "lib/application_impl_standalone.cc"
35 ]
36
37 deps = [ ":base" ]
38 }
39
40 source_set("main_chromium") { 24 source_set("main_chromium") {
41 sources = [ 25 sources = [
42 "lib/mojo_main_chromium.cc" 26 "lib/mojo_main_chromium.cc"
43 ] 27 ]
44 28
45 deps = [ ":chromium" ] 29 deps = [ ":application" ]
46 } 30 }
47 31
48 source_set("main_standalone") { 32 source_set("main_standalone") {
49 sources = [ 33 sources = [
50 "lib/mojo_main_standalone.cc" 34 "lib/mojo_main_standalone.cc"
51 ] 35 ]
52 36
53 deps = [ ":standalone" ] 37 deps = [ ":application" ]
54 } 38 }
OLDNEW
« no previous file with comments | « trunk/src/mojo/public/BUILD.gn ('k') | trunk/src/mojo/public/cpp/application/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698