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

Side by Side Diff: components/favicon_base/BUILD.gn

Issue 851693003: Move select_favicon_frames_unittest.cc to favicon_base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@history-top-sites-notifications
Patch Set: Created 5 years, 11 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/favicon_base/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("favicon_base") { 5 source_set("favicon_base") {
6 sources = [ 6 sources = [
7 "favicon_callback.h", 7 "favicon_callback.h",
8 "favicon_types.cc", 8 "favicon_types.cc",
9 "favicon_types.h", 9 "favicon_types.h",
10 "favicon_util.cc", 10 "favicon_util.cc",
11 "favicon_util.h", 11 "favicon_util.h",
12 "select_favicon_frames.cc", 12 "select_favicon_frames.cc",
13 "select_favicon_frames.h", 13 "select_favicon_frames.h",
14 ] 14 ]
15 15
16 deps = [ 16 deps = [
17 "//base", 17 "//base",
18 "//skia", 18 "//skia",
19 "//ui/base",
19 "//ui/gfx", 20 "//ui/gfx",
20 "//url", 21 "//url",
21 ] 22 ]
22 } 23 }
24
25 source_set("unit_tests") {
26 testonly = true
27 sources = [
28 "select_favicon_frames_unittest.cc",
29 ]
30
31 deps = [
32 ":favicon_base",
33 "//testing/gtest",
34 "//ui/base",
35 "//ui/gfx",
36 ]
37 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/favicon_base/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698