| 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 static_library("url_fixer") { |
| 6 output_name = "keyed_service_core" | |
| 7 sources = [ | 6 sources = [ |
| 8 "dependency_graph.cc", | 7 "url_fixer.cc", |
| 9 "dependency_graph.h", | 8 "url_fixer.h", |
| 10 "dependency_node.h", | |
| 11 "keyed_service.cc", | |
| 12 "keyed_service.h", | |
| 13 "keyed_service_export.h", | |
| 14 ] | 9 ] |
| 15 | 10 |
| 16 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] | |
| 17 | |
| 18 deps = [ | 11 deps = [ |
| 19 "//base", | 12 "//base", |
| 13 "//net", |
| 20 ] | 14 ] |
| 21 | 15 |
| 22 if (is_win) { | 16 if (is_win) { |
| 23 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 17 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 24 cflags = [ "/wd4267" ] | 18 cflags = [ "/wd4267" ] |
| 25 } | 19 } |
| 26 } | 20 } |
| OLD | NEW |