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 static_library("core") { | 5 source_set("core") { |
6 sources = [ | 6 sources = [ |
7 "fallback_icon_client.h", | 7 "fallback_icon_client.h", |
8 "fallback_icon_service.cc", | 8 "fallback_icon_service.cc", |
9 "fallback_icon_service.h", | 9 "fallback_icon_service.h", |
10 "favicon_client.h", | 10 "favicon_client.h", |
11 "favicon_driver.cc", | 11 "favicon_driver.cc", |
12 "favicon_driver.h", | 12 "favicon_driver.h", |
13 "favicon_driver_impl.cc", | 13 "favicon_driver_impl.cc", |
14 "favicon_driver_impl.h", | 14 "favicon_driver_impl.h", |
15 "favicon_driver_observer.h", | 15 "favicon_driver_observer.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 deps = [ | 49 deps = [ |
50 "//base", | 50 "//base", |
51 "//components/favicon_base", | 51 "//components/favicon_base", |
52 "//skia", | 52 "//skia", |
53 "//testing/gtest", | 53 "//testing/gtest", |
54 "//ui/base", | 54 "//ui/base", |
55 "//ui/gfx", | 55 "//ui/gfx", |
56 "//url", | 56 "//url", |
57 ] | 57 ] |
58 } | 58 } |
OLD | NEW |