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 source_set("favicon_base") { |
6 sources = [ | 6 sources = [ |
7 "fallback_icon_service.cc", | |
8 "fallback_icon_service.h", | |
9 "fallback_icon_style.cc", | 7 "fallback_icon_style.cc", |
10 "fallback_icon_style.h", | 8 "fallback_icon_style.h", |
11 "favicon_callback.h", | 9 "favicon_callback.h", |
12 "favicon_types.cc", | 10 "favicon_types.cc", |
13 "favicon_types.h", | 11 "favicon_types.h", |
14 "favicon_usage_data.cc", | 12 "favicon_usage_data.cc", |
15 "favicon_usage_data.h", | 13 "favicon_usage_data.h", |
16 "favicon_util.cc", | 14 "favicon_util.cc", |
17 "favicon_util.h", | 15 "favicon_util.h", |
18 "select_favicon_frames.cc", | 16 "select_favicon_frames.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
36 ] | 34 ] |
37 | 35 |
38 deps = [ | 36 deps = [ |
39 ":favicon_base", | 37 ":favicon_base", |
40 "//testing/gtest", | 38 "//testing/gtest", |
41 "//ui/base", | 39 "//ui/base", |
42 "//ui/gfx", | 40 "//ui/gfx", |
43 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
44 ] | 42 ] |
45 } | 43 } |
OLD | NEW |