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

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

Issue 394903005: mojo: terminate apps if the shell goes away (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable tests that touch nss for now 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 | « mojo/public/BUILD.gn ('k') | 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("application") { 5 source_set("base") {
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
24 source_set("main_chromium") { 40 source_set("main_chromium") {
25 sources = [ 41 sources = [
26 "lib/mojo_main_chromium.cc" 42 "lib/mojo_main_chromium.cc"
27 ] 43 ]
28 44
29 deps = [ ":application" ] 45 deps = [ ":chromium" ]
30 } 46 }
31 47
32 source_set("main_standalone") { 48 source_set("main_standalone") {
33 sources = [ 49 sources = [
34 "lib/mojo_main_standalone.cc" 50 "lib/mojo_main_standalone.cc"
35 ] 51 ]
36 52
37 deps = [ ":application" ] 53 deps = [ ":standalone" ]
38 } 54 }
OLDNEW
« no previous file with comments | « mojo/public/BUILD.gn ('k') | mojo/public/cpp/application/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698