Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: components/favicon/core/BUILD.gn

Issue 1122103003: [Large Icon Service] Move icon resizing into worker thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment cleanup; making ResizeLargeIconOnBackgroundThreadIfValid() a member function. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 static_library("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",
(...skipping 11 matching lines...) Expand all
22 "large_icon_service.cc", 22 "large_icon_service.cc",
23 "large_icon_service.h", 23 "large_icon_service.h",
24 ] 24 ]
25 25
26 deps = [ 26 deps = [
27 "//base", 27 "//base",
28 "//components/bookmarks/browser", 28 "//components/bookmarks/browser",
29 "//components/favicon_base", 29 "//components/favicon_base",
30 "//components/history/core/browser", 30 "//components/history/core/browser",
31 "//components/keyed_service/core", 31 "//components/keyed_service/core",
32 "//content/public/browser",
32 "//skia", 33 "//skia",
33 "//ui/base", 34 "//ui/base",
34 "//ui/gfx", 35 "//ui/gfx",
35 "//url", 36 "//url",
36 ] 37 ]
37 } 38 }
38 39
39 source_set("unit_tests") { 40 source_set("unit_tests") {
40 testonly = true 41 testonly = true
41 sources = [ 42 sources = [
42 "favicon_handler_unittest.cc", 43 "favicon_handler_unittest.cc",
43 "large_icon_service_unittest.cc", 44 "large_icon_service_unittest.cc",
44 ] 45 ]
45 46
46 deps = [ 47 deps = [
47 "//base", 48 "//base",
48 "//components/favicon_base", 49 "//components/favicon_base",
49 "//skia", 50 "//skia",
50 "//testing/gtest", 51 "//testing/gtest",
51 "//ui/base", 52 "//ui/base",
52 "//ui/gfx", 53 "//ui/gfx",
53 "//url", 54 "//url",
54 ] 55 ]
55 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698