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

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

Issue 2005103003: Add implementations of mojo::{Run,Terminate}[Main]Application() for "chromium". (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
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("application") {
6 sources = [ 6 sources = [
7 "application_runner_chromium.cc", 7 "application_runner_chromium.cc",
8 "application_runner_chromium.h", 8 "application_runner_chromium.h",
9 "run_application.cc",
9 ] 10 ]
10 11
11 public_deps = [ 12 public_deps = [
12 "//mojo/public/cpp/application", 13 "//mojo/public/cpp/application",
13 ] 14 ]
14 deps = [ 15 deps = [
15 "//base", 16 "//base",
17 "//mojo/environment:chromium",
16 "//mojo/message_pump", 18 "//mojo/message_pump",
17 "//mojo/public/cpp/system", 19 "//mojo/public/cpp/system",
18 "//mojo/environment:chromium",
19 ] 20 ]
20 } 21 }
21 22
22 source_set("content_handler") { 23 source_set("content_handler") {
23 sources = [ 24 sources = [
24 "content_handler_factory.cc", 25 "content_handler_factory.cc",
25 "content_handler_factory.h", 26 "content_handler_factory.h",
26 ] 27 ]
27 deps = [ 28 deps = [
28 ":application", 29 ":application",
(...skipping 16 matching lines...) Expand all
45 "//mojo/public/cpp/application:test_support", 46 "//mojo/public/cpp/application:test_support",
46 ] 47 ]
47 deps = [ 48 deps = [
48 "//base", 49 "//base",
49 "//base/test:test_config", 50 "//base/test:test_config",
50 "//mojo/environment:chromium", 51 "//mojo/environment:chromium",
51 "//mojo/public/cpp/application", 52 "//mojo/public/cpp/application",
52 "//mojo/public/cpp/system", 53 "//mojo/public/cpp/system",
53 ] 54 ]
54 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698