| 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.gyp:mojo_service_manager | 5 # GYP version: mojo.gyp:mojo_service_manager |
| 6 component("service_manager") { | 6 component("service_manager") { |
| 7 output_name = "mojo_service_manager" | 7 output_name = "mojo_service_manager" |
| 8 sources = [ | 8 sources = [ |
| 9 "background_shell_service_loader.cc", | 9 "background_shell_service_loader.cc", |
| 10 "background_shell_service_loader.h", | 10 "background_shell_service_loader.h", |
| 11 "service_loader.cc", |
| 11 "service_loader.h", | 12 "service_loader.h", |
| 12 "service_manager.cc", | 13 "service_manager.cc", |
| 13 "service_manager.h", | 14 "service_manager.h", |
| 14 "service_manager_export.h", | 15 "service_manager_export.h", |
| 15 ] | 16 ] |
| 16 | 17 |
| 17 defines = [ "MOJO_SERVICE_MANAGER_IMPLEMENTATION" ] | 18 defines = [ "MOJO_SERVICE_MANAGER_IMPLEMENTATION" ] |
| 18 | 19 |
| 19 deps = [ | 20 deps = [ |
| 20 "//base", | 21 "//base", |
| 21 "//base/third_party/dynamic_annotations", | 22 "//base/third_party/dynamic_annotations", |
| 22 "//net", | 23 "//net", |
| 23 "//url", | 24 "//url", |
| 24 "//mojo/common", | 25 "//mojo/common", |
| 25 "//mojo/environment:chromium", | 26 "//mojo/environment:chromium", |
| 26 "//mojo/public/interfaces/application:application", | 27 "//mojo/public/interfaces/application:application", |
| 28 "//mojo/services/public/interfaces/content_handler:content_handler", |
| 29 "//mojo/services/public/interfaces/network:network", |
| 27 "//mojo/system", | 30 "//mojo/system", |
| 28 ] | 31 ] |
| 29 | 32 |
| 30 forward_dependent_configs_from = [ | 33 forward_dependent_configs_from = [ |
| 31 "//mojo/public/interfaces/application:application", | 34 "//mojo/public/interfaces/application:application", |
| 32 ] | 35 ] |
| 33 } | 36 } |
| OLD | NEW |