OLD | NEW |
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_connection.h", | 10 "application_connection.h", |
11 "application_delegate.h", | 11 "application_delegate.h", |
12 "application_impl.h", | 12 "application_impl.h", |
13 "connect.h", | 13 "connect.h", |
14 "connection_context.h", | 14 "connection_context.h", |
15 "interface_factory.h", | |
16 "lib/application_connection.cc", | 15 "lib/application_connection.cc", |
17 "lib/application_delegate.cc", | 16 "lib/application_delegate.cc", |
18 "lib/application_impl.cc", | 17 "lib/application_impl.cc", |
19 "lib/interface_factory_connector.h", | |
20 "lib/service_connector_registry.cc", | 18 "lib/service_connector_registry.cc", |
21 "lib/service_connector_registry.h", | 19 "lib/service_connector_registry.h", |
22 "lib/service_provider_impl.cc", | 20 "lib/service_provider_impl.cc", |
23 "lib/service_registry.cc", | 21 "lib/service_registry.cc", |
24 "lib/service_registry.h", | 22 "lib/service_registry.h", |
25 "service_connector.h", | 23 "service_connector.h", |
26 "service_provider_impl.h", | 24 "service_provider_impl.h", |
27 ] | 25 ] |
28 | 26 |
29 mojo_sdk_deps = [ | 27 mojo_sdk_deps = [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 ] | 83 ] |
86 | 84 |
87 mojo_sdk_deps = [ | 85 mojo_sdk_deps = [ |
88 "mojo/public/interfaces/application", | 86 "mojo/public/interfaces/application", |
89 "mojo/public/cpp/environment:standalone", | 87 "mojo/public/cpp/environment:standalone", |
90 "mojo/public/cpp/system", | 88 "mojo/public/cpp/system", |
91 "mojo/public/cpp/utility", | 89 "mojo/public/cpp/utility", |
92 "mojo/public/interfaces/application", | 90 "mojo/public/interfaces/application", |
93 ] | 91 ] |
94 } | 92 } |
OLD | NEW |