blob: 36c842ee256bb02eba07e57a9a6cbabca97243d6 [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
component("core") {
output_name = "keyed_service_core"
sources = [
"dependency_graph.cc",
"dependency_graph.h",
"dependency_manager.cc",
"dependency_manager.h",
"dependency_node.h",
"keyed_service.cc",
"keyed_service.h",
"keyed_service_base_factory.cc",
"keyed_service_base_factory.h",
"keyed_service_export.h",
"refcounted_keyed_service.cc",
"refcounted_keyed_service.h",
]
defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
deps = [
"//base",
]
if (is_win) {
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
cflags = [ "/wd4267" ]
}
}