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

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

Issue 2004493002: Add a mojo::RunApplication() for running implementations of ApplicationImplBase. (Closed) Base URL: https://github.com/domokit/mojo.git@work790_environment_no_instantiate
Patch Set: rebased Created 4 years, 7 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 | « examples/trace_me/trace_me_app.cc ('k') | mojo/public/cpp/application/application_impl_base.h » ('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 import("../../mojo_sdk.gni") 5 import("../../mojo_sdk.gni")
6 6
7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base 7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base
8 mojo_sdk_source_set("application") { 8 mojo_sdk_source_set("application") {
9 sources = [ 9 sources = [
10 "application_delegate.h", 10 "application_delegate.h",
(...skipping 14 matching lines...) Expand all
25 "mojo/public/cpp/bindings", 25 "mojo/public/cpp/bindings",
26 "mojo/public/cpp/environment", 26 "mojo/public/cpp/environment",
27 "mojo/public/cpp/system", 27 "mojo/public/cpp/system",
28 "mojo/public/interfaces/application", 28 "mojo/public/interfaces/application",
29 ] 29 ]
30 } 30 }
31 31
32 # GYP version: mojo/public/mojo_public.gyp:mojo_application_standalone 32 # GYP version: mojo/public/mojo_public.gyp:mojo_application_standalone
33 mojo_sdk_source_set("standalone") { 33 mojo_sdk_source_set("standalone") {
34 sources = [ 34 sources = [
35 "application_runner.h",
35 "lib/application_runner.cc", 36 "lib/application_runner.cc",
37 "lib/run_application.cc",
38 "run_application.h",
36 ] 39 ]
37 40
38 public_deps = [ 41 public_deps = [
39 ":application", 42 ":application",
40 ] 43 ]
41 44
42 mojo_sdk_deps = [ 45 mojo_sdk_deps = [
43 "mojo/public/cpp/environment:standalone", 46 "mojo/public/cpp/environment:standalone",
47 "mojo/public/cpp/system",
44 "mojo/public/cpp/utility", 48 "mojo/public/cpp/utility",
49 "mojo/public/interfaces/application",
45 ] 50 ]
46 } 51 }
47 52
48 mojo_sdk_source_set("test_support") { 53 mojo_sdk_source_set("test_support") {
49 testonly = true 54 testonly = true
50 sources = [ 55 sources = [
51 "application_test_base.h", 56 "application_test_base.h",
52 "lib/application_test_base.cc", 57 "lib/application_test_base.cc",
53 ] 58 ]
54 59
(...skipping 25 matching lines...) Expand all
80 ] 85 ]
81 86
82 mojo_sdk_deps = [ 87 mojo_sdk_deps = [
83 "mojo/public/interfaces/application", 88 "mojo/public/interfaces/application",
84 "mojo/public/cpp/environment:standalone", 89 "mojo/public/cpp/environment:standalone",
85 "mojo/public/cpp/system", 90 "mojo/public/cpp/system",
86 "mojo/public/cpp/utility", 91 "mojo/public/cpp/utility",
87 "mojo/public/interfaces/application", 92 "mojo/public/interfaces/application",
88 ] 93 ]
89 } 94 }
OLDNEW
« no previous file with comments | « examples/trace_me/trace_me_app.cc ('k') | mojo/public/cpp/application/application_impl_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698