OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 component("keyed_service_core") { | |
tfarina
2014/06/28 20:12:45
Brett, didn't you mean s/keyed_service_core/core h
| |
6 output_name = "keyed_service_core" | |
7 sources = [ | |
tfarina
2014/06/28 20:12:46
blank line above.
| |
8 "dependency_graph.cc", | |
9 "dependency_graph.h", | |
10 "dependency_node.h", | |
11 "keyed_service.cc", | |
12 "keyed_service.h", | |
13 "keyed_service_export.h", | |
14 ] | |
15 | |
16 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] | |
17 if (is_win) { | |
tfarina
2014/06/28 20:12:45
I usually put conditions after deps.
tfarina
2014/06/28 20:12:45
blank line above.
| |
18 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
19 cflags = [ "/wd4267" ] | |
20 } | |
21 | |
22 deps = [ | |
23 "//base", | |
24 ] | |
25 } | |
OLD | NEW |