| 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", |
| 10 "fallback_icon_style.h", |
| 7 "favicon_callback.h", | 11 "favicon_callback.h", |
| 8 "favicon_types.cc", | 12 "favicon_types.cc", |
| 9 "favicon_types.h", | 13 "favicon_types.h", |
| 10 "favicon_util.cc", | 14 "favicon_util.cc", |
| 11 "favicon_util.h", | 15 "favicon_util.h", |
| 12 "select_favicon_frames.cc", | 16 "select_favicon_frames.cc", |
| 13 "select_favicon_frames.h", | 17 "select_favicon_frames.h", |
| 14 ] | 18 ] |
| 15 | 19 |
| 16 deps = [ | 20 deps = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 "select_favicon_frames_unittest.cc", | 32 "select_favicon_frames_unittest.cc", |
| 29 ] | 33 ] |
| 30 | 34 |
| 31 deps = [ | 35 deps = [ |
| 32 ":favicon_base", | 36 ":favicon_base", |
| 33 "//testing/gtest", | 37 "//testing/gtest", |
| 34 "//ui/base", | 38 "//ui/base", |
| 35 "//ui/gfx", | 39 "//ui/gfx", |
| 36 ] | 40 ] |
| 37 } | 41 } |
| OLD | NEW |