| Index: components/keyed_service/core/BUILD.gn
|
| diff --git a/components/keyed_service/core/BUILD.gn b/components/keyed_service/core/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..10cf1bbfdb5d9571c922dd8193a265cba7c44861
|
| --- /dev/null
|
| +++ b/components/keyed_service/core/BUILD.gn
|
| @@ -0,0 +1,25 @@
|
| +# 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("keyed_service_core") {
|
| + output_name = "keyed_service_core"
|
| + sources = [
|
| + "dependency_graph.cc",
|
| + "dependency_graph.h",
|
| + "dependency_node.h",
|
| + "keyed_service.cc",
|
| + "keyed_service.h",
|
| + "keyed_service_export.h",
|
| + ]
|
| +
|
| + defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
|
| + if (is_win) {
|
| + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
| + cflags = [ "/wd4267" ]
|
| + }
|
| +
|
| + deps = [
|
| + "//base",
|
| + ]
|
| +}
|
|
|