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 # 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 ":sources", | 8 ":sources", |
9 ":init_commandline", | 9 ":init_commandline", |
10 ] | 10 ] |
(...skipping 11 matching lines...) Expand all Loading... |
22 sources = [ | 22 sources = [ |
23 "app_lifetime_helper.h", | 23 "app_lifetime_helper.h", |
24 "application_connection.h", | 24 "application_connection.h", |
25 "application_delegate.h", | 25 "application_delegate.h", |
26 "application_impl.h", | 26 "application_impl.h", |
27 "application_runner.h", | 27 "application_runner.h", |
28 "connect.h", | 28 "connect.h", |
29 "interface_factory.h", | 29 "interface_factory.h", |
30 "interface_factory_impl.h", | 30 "interface_factory_impl.h", |
31 "lib/app_lifetime_helper.cc", | 31 "lib/app_lifetime_helper.cc", |
32 "lib/application_connection.cc", | |
33 "lib/application_delegate.cc", | 32 "lib/application_delegate.cc", |
34 "lib/application_impl.cc", | 33 "lib/application_impl.cc", |
35 "lib/application_runner.cc", | 34 "lib/application_runner.cc", |
36 "lib/interface_factory_connector.h", | 35 "lib/interface_factory_connector.h", |
37 "lib/service_connector_registry.cc", | 36 "lib/service_connector_registry.cc", |
38 "lib/service_connector_registry.h", | 37 "lib/service_connector_registry.h", |
39 "lib/service_provider_impl.cc", | 38 "lib/service_provider_impl.cc", |
40 "lib/service_registry.cc", | 39 "lib/service_registry.cc", |
41 "lib/service_registry.h", | 40 "lib/service_registry.h", |
42 "service_connector.h", | 41 "service_connector.h", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 ] | 95 ] |
97 | 96 |
98 data_deps = [] | 97 data_deps = [] |
99 if (is_android) { | 98 if (is_android) { |
100 data_deps += [ "//mojo/android" ] | 99 data_deps += [ "//mojo/android" ] |
101 } | 100 } |
102 if (!is_component_build) { | 101 if (!is_component_build) { |
103 data_deps += [ "//mojo/runner" ] | 102 data_deps += [ "//mojo/runner" ] |
104 } | 103 } |
105 } | 104 } |
OLD | NEW |