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

Side by Side Diff: components/favicon_base.gypi

Issue 886163003: [Favicon] Add FallbackIconStyle and FallbackIconService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment fix; moved FallbackIconStyle member functions outside of struct. Created 5 years, 10 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/favicon_base
8 'target_name': 'favicon_base', 9 'target_name': 'favicon_base',
9 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
10 'dependencies': [ 14 'dependencies': [
11 '../base/base.gyp:base', 15 '../base/base.gyp:base',
12 '../skia/skia.gyp:skia', 16 '../skia/skia.gyp:skia',
17 '../ui/base/ui_base.gyp:ui_base',
13 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
14 '../url/url.gyp:url_lib', 19 '../url/url.gyp:url_lib',
15 ], 20 ],
16 'sources': [ 21 'sources': [
22 'favicon_base/fallback_icon_service.cc',
23 'favicon_base/fallback_icon_service.h',
24 'favicon_base/fallback_icon_style.cc',
25 'favicon_base/fallback_icon_style.h',
17 'favicon_base/favicon_callback.h', 26 'favicon_base/favicon_callback.h',
18 'favicon_base/favicon_types.cc', 27 'favicon_base/favicon_types.cc',
19 'favicon_base/favicon_types.h', 28 'favicon_base/favicon_types.h',
20 'favicon_base/favicon_util.cc', 29 'favicon_base/favicon_util.cc',
21 'favicon_base/favicon_util.h', 30 'favicon_base/favicon_util.h',
22 'favicon_base/select_favicon_frames.cc', 31 'favicon_base/select_favicon_frames.cc',
23 'favicon_base/select_favicon_frames.h', 32 'favicon_base/select_favicon_frames.h',
24 ], 33 ],
25 'include_dirs': [
26 '..',
27 ],
28 }, 34 },
29 ], 35 ],
30 } 36 }
OLDNEW
« no previous file with comments | « no previous file | components/favicon_base/BUILD.gn » ('j') | components/favicon_base/fallback_icon_style.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698