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

Side by Side Diff: components/favicon_base.gypi

Issue 1032683002: [Icons NTP] Refactoring: Moving FallbackIconService to components\favicon\core (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Putting back +third_party/skia/include for favicon_base DEPS. Created 5 years, 9 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 # GN version: //components/favicon_base
9 'target_name': 'favicon_base', 9 'target_name': 'favicon_base',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../skia/skia.gyp:skia', 16 '../skia/skia.gyp:skia',
17 '../ui/base/ui_base.gyp:ui_base', 17 '../ui/base/ui_base.gyp:ui_base',
18 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
19 '../ui/gfx/gfx.gyp:gfx_geometry', 19 '../ui/gfx/gfx.gyp:gfx_geometry',
20 '../url/url.gyp:url_lib', 20 '../url/url.gyp:url_lib',
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'favicon_base/fallback_icon_service.cc',
24 'favicon_base/fallback_icon_service.h',
25 'favicon_base/fallback_icon_style.cc', 23 'favicon_base/fallback_icon_style.cc',
26 'favicon_base/fallback_icon_style.h', 24 'favicon_base/fallback_icon_style.h',
27 'favicon_base/favicon_callback.h', 25 'favicon_base/favicon_callback.h',
28 'favicon_base/favicon_types.cc', 26 'favicon_base/favicon_types.cc',
29 'favicon_base/favicon_types.h', 27 'favicon_base/favicon_types.h',
30 'favicon_base/favicon_usage_data.cc', 28 'favicon_base/favicon_usage_data.cc',
31 'favicon_base/favicon_usage_data.h', 29 'favicon_base/favicon_usage_data.h',
32 'favicon_base/favicon_util.cc', 30 'favicon_base/favicon_util.cc',
33 'favicon_base/favicon_util.h', 31 'favicon_base/favicon_util.h',
34 'favicon_base/select_favicon_frames.cc', 32 'favicon_base/select_favicon_frames.cc',
35 'favicon_base/select_favicon_frames.h', 33 'favicon_base/select_favicon_frames.h',
36 ], 34 ],
37 }, 35 },
38 ], 36 ],
39 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698