| 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 source_set("favicon_base") { | 5 static_library("favicon_base") { |
| 6 sources = [ | 6 sources = [ |
| 7 "fallback_icon_style.cc", | 7 "fallback_icon_style.cc", |
| 8 "fallback_icon_style.h", | 8 "fallback_icon_style.h", |
| 9 "fallback_icon_url_parser.cc", | 9 "fallback_icon_url_parser.cc", |
| 10 "fallback_icon_url_parser.h", | 10 "fallback_icon_url_parser.h", |
| 11 "favicon_callback.h", | 11 "favicon_callback.h", |
| 12 "favicon_types.cc", | 12 "favicon_types.cc", |
| 13 "favicon_types.h", | 13 "favicon_types.h", |
| 14 "favicon_url_parser.cc", | 14 "favicon_url_parser.cc", |
| 15 "favicon_url_parser.h", | 15 "favicon_url_parser.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":favicon_base", | 48 ":favicon_base", |
| 49 "//testing/gtest", | 49 "//testing/gtest", |
| 50 "//ui/base", | 50 "//ui/base", |
| 51 "//ui/gfx", | 51 "//ui/gfx", |
| 52 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
| 53 "//url", | 53 "//url", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| OLD | NEW |