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

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

Issue 1728083002: Extract a Connector interface from Shell that can be cloned & passed to other threads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@12uid
Patch Set: . Created 4 years, 9 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/identity.cc ('k') | mojo/shell/public/cpp/connector.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 ]
11 } 11 }
12 12
13 # Like the target above, but without special commandline initialization that 13 # Like the target above, but without special commandline initialization that
14 # apps use. 14 # apps use.
15 source_set("cpp_for_chromium") { 15 source_set("cpp_for_chromium") {
16 public_deps = [ 16 public_deps = [
17 ":sources", 17 ":sources",
18 ] 18 ]
19 } 19 }
20 20
21 source_set("sources") { 21 source_set("sources") {
22 sources = [ 22 sources = [
23 "application_runner.h", 23 "application_runner.h",
24 "connect.h", 24 "connect.h",
25 "connection.h", 25 "connection.h",
26 "connector.h",
26 "initialize_base_and_icu.cc", 27 "initialize_base_and_icu.cc",
27 "interface_binder.h", 28 "interface_binder.h",
28 "interface_factory.h", 29 "interface_factory.h",
29 "interface_factory_impl.h", 30 "interface_factory_impl.h",
30 "interface_registry.h", 31 "interface_registry.h",
31 "lib/application_runner.cc", 32 "lib/application_runner.cc",
32 "lib/connection_impl.cc", 33 "lib/connection_impl.cc",
33 "lib/connection_impl.h", 34 "lib/connection_impl.h",
35 "lib/connector_impl.cc",
36 "lib/connector_impl.h",
34 "lib/interface_factory_binder.h", 37 "lib/interface_factory_binder.h",
35 "lib/interface_registry.cc", 38 "lib/interface_registry.cc",
36 "lib/shell_client.cc", 39 "lib/shell_client.cc",
37 "lib/shell_connection.cc", 40 "lib/shell_connection.cc",
38 "shell.h", 41 "shell.h",
39 "shell_client.h", 42 "shell_client.h",
40 "shell_connection.h", 43 "shell_connection.h",
41 ] 44 ]
42 45
43 deps = [ 46 deps = [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "//base/test:test_support", 81 "//base/test:test_support",
79 "//mojo/logging", 82 "//mojo/logging",
80 "//mojo/public/cpp/bindings", 83 "//mojo/public/cpp/bindings",
81 "//mojo/public/cpp/environment", 84 "//mojo/public/cpp/environment",
82 "//mojo/public/cpp/system", 85 "//mojo/public/cpp/system",
83 "//mojo/shell/public/interfaces:interfaces_cpp_sources", 86 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
84 ] 87 ]
85 88
86 data_deps = [] 89 data_deps = []
87 } 90 }
OLDNEW
« no previous file with comments | « mojo/shell/identity.cc ('k') | mojo/shell/public/cpp/connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698