| 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 component("core") { | 5 component("core") { |
| 6 output_name = "keyed_service_core" | 6 output_name = "keyed_service_core" |
| 7 sources = [ | 7 sources = [ |
| 8 "dependency_graph.cc", | 8 "dependency_graph.cc", |
| 9 "dependency_graph.h", | 9 "dependency_graph.h", |
| 10 "dependency_manager.cc", | 10 "dependency_manager.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "refcounted_keyed_service_factory.h", | 25 "refcounted_keyed_service_factory.h", |
| 26 "service_access_types.h", | 26 "service_access_types.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 30 | 30 |
| 31 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] | 31 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//base:prefs", |
| 36 "//components/user_prefs", |
| 35 ] | 37 ] |
| 36 } | 38 } |
| OLD | NEW |