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

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

Issue 1705323003: ContentHandler -> ShellClientFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delete
Patch Set: . Created 4 years, 10 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/shell/package_test_package.cc ('k') | mojo/shell/public/cpp/connection.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 # GYP version: mojo/mojo_base.gyp:mojo_application_base 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base
6 source_set("cpp") { 6 source_set("cpp") {
7 public_deps = [ 7 public_deps = [
8 ":init_commandline", 8 ":init_commandline",
9 ":sources", 9 ":sources",
10 ] 10 ]
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//mojo/shell/public/interfaces", 55 "//mojo/shell/public/interfaces",
56 ] 56 ]
57 } 57 }
58 58
59 source_set("init_commandline") { 59 source_set("init_commandline") {
60 sources = [ 60 sources = [
61 "lib/init_commandline.cc", 61 "lib/init_commandline.cc",
62 ] 62 ]
63 } 63 }
64 64
65 source_set("content_handler") { 65 source_set("shell_client_factory") {
66 sources = [ 66 sources = [
67 "content_handler_factory.h", 67 "lib/shell_client_factory.cc",
68 "lib/content_handler_factory.cc", 68 "shell_client_factory.h",
69 ] 69 ]
70 deps = [ 70 deps = [
71 ":cpp", 71 ":cpp",
72 72
73 # TODO: this code should not depend on base. 73 # TODO: this code should not depend on base.
74 "//base", 74 "//base",
75 "//mojo/common:url_type_converters",
75 "//mojo/message_pump", 76 "//mojo/message_pump",
76 "//mojo/services/network/public/interfaces", 77 "//mojo/services/network/public/interfaces",
77 "//mojo/shell/public/interfaces:interfaces_cpp_sources", 78 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
79 "//url",
78 ] 80 ]
79 } 81 }
80 82
81 source_set("test_support") { 83 source_set("test_support") {
82 testonly = true 84 testonly = true
83 sources = [ 85 sources = [
84 "application_test_base.h", 86 "application_test_base.h",
85 "lib/application_test_base.cc", 87 "lib/application_test_base.cc",
86 "lib/application_test_main.cc", 88 "lib/application_test_main.cc",
87 ] 89 ]
(...skipping 11 matching lines...) Expand all
99 "//mojo/public/cpp/environment", 101 "//mojo/public/cpp/environment",
100 "//mojo/public/cpp/system", 102 "//mojo/public/cpp/system",
101 "//mojo/shell/public/interfaces:interfaces_cpp_sources", 103 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
102 ] 104 ]
103 105
104 data_deps = [] 106 data_deps = []
105 if (is_android) { 107 if (is_android) {
106 data_deps += [ "//mojo/android" ] 108 data_deps += [ "//mojo/android" ]
107 } 109 }
108 } 110 }
OLDNEW
« no previous file with comments | « mojo/shell/package_test_package.cc ('k') | mojo/shell/public/cpp/connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698