| 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 group("cpp") { | 6 group("cpp") { |
| 7 public_deps = [ | 7 public_deps = [ |
| 8 ":sources", | 8 ":sources", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| 11 | 11 |
| 12 # TODO(rockot): Rename this to "cpp". | 12 # TODO(rockot): Rename this to "cpp". |
| 13 static_library("sources") { | 13 static_library("sources") { |
| 14 sources = [ | 14 sources = [ |
| 15 "application_runner.h", | |
| 16 "capabilities.h", | 15 "capabilities.h", |
| 17 "connect.h", | 16 "connect.h", |
| 18 "connection.h", | 17 "connection.h", |
| 19 "connector.h", | 18 "connector.h", |
| 20 "identity.h", | 19 "identity.h", |
| 21 "interface_binder.h", | 20 "interface_binder.h", |
| 22 "interface_factory.h", | 21 "interface_factory.h", |
| 23 "interface_factory_impl.h", | 22 "interface_factory_impl.h", |
| 24 "interface_provider.h", | 23 "interface_provider.h", |
| 25 "interface_registry.h", | 24 "interface_registry.h", |
| 26 "lib/application_runner.cc", | |
| 27 "lib/callback_binder.cc", | 25 "lib/callback_binder.cc", |
| 28 "lib/callback_binder.h", | 26 "lib/callback_binder.h", |
| 29 "lib/capabilities.cc", | 27 "lib/capabilities.cc", |
| 30 "lib/connection_impl.cc", | 28 "lib/connection_impl.cc", |
| 31 "lib/connection_impl.h", | 29 "lib/connection_impl.h", |
| 32 "lib/connector_impl.cc", | 30 "lib/connector_impl.cc", |
| 33 "lib/connector_impl.h", | 31 "lib/connector_impl.h", |
| 34 "lib/identity.cc", | 32 "lib/identity.cc", |
| 35 "lib/interface_factory_binder.h", | 33 "lib/interface_factory_binder.h", |
| 36 "lib/interface_provider.cc", | 34 "lib/interface_provider.cc", |
| 37 "lib/interface_registry.cc", | 35 "lib/interface_registry.cc", |
| 38 "lib/names.cc", | 36 "lib/names.cc", |
| 39 "lib/service.cc", | 37 "lib/service.cc", |
| 40 "lib/service_context.cc", | 38 "lib/service_context.cc", |
| 41 "lib/service_context_ref.cc", | 39 "lib/service_context_ref.cc", |
| 40 "lib/service_runner.cc", |
| 42 "names.h", | 41 "names.h", |
| 43 "service.h", | 42 "service.h", |
| 44 "service_context.h", | 43 "service_context.h", |
| 45 "service_context_ref.h", | 44 "service_context_ref.h", |
| 45 "service_runner.h", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 public_deps = [ | 48 public_deps = [ |
| 49 "//base", | 49 "//base", |
| 50 "//mojo/public/cpp/bindings", | 50 "//mojo/public/cpp/bindings", |
| 51 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
| 52 "//services/shell/public/interfaces", | 52 "//services/shell/public/interfaces", |
| 53 "//url", | 53 "//url", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 85 "//base/test:test_support", | 85 "//base/test:test_support", |
| 86 "//mojo/public/cpp/bindings", | 86 "//mojo/public/cpp/bindings", |
| 87 "//mojo/public/cpp/system", | 87 "//mojo/public/cpp/system", |
| 88 "//services/shell/background:lib", | 88 "//services/shell/background:lib", |
| 89 "//services/shell/public/interfaces:interfaces_cpp_sources", | 89 "//services/shell/public/interfaces:interfaces_cpp_sources", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 data_deps = [] | 92 data_deps = [] |
| 93 } | 93 } |
| 94 } | 94 } |
| OLD | NEW |