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