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