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