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

Side by Side Diff: components/favicon.gypi

Issue 1092873002: [Icons NTP] Refactor large_icon_source to extract the logic shared between desktop and Android to f… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/core 8 # GN version: //components/favicon/core
9 'target_name': 'favicon_core', 9 'target_name': 'favicon_core',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 18 matching lines...) Expand all
29 'favicon/core/favicon_driver.h', 29 'favicon/core/favicon_driver.h',
30 'favicon/core/favicon_driver_impl.cc', 30 'favicon/core/favicon_driver_impl.cc',
31 'favicon/core/favicon_driver_impl.h', 31 'favicon/core/favicon_driver_impl.h',
32 'favicon/core/favicon_driver_observer.h', 32 'favicon/core/favicon_driver_observer.h',
33 'favicon/core/favicon_handler.cc', 33 'favicon/core/favicon_handler.cc',
34 'favicon/core/favicon_handler.h', 34 'favicon/core/favicon_handler.h',
35 'favicon/core/favicon_service.cc', 35 'favicon/core/favicon_service.cc',
36 'favicon/core/favicon_service.h', 36 'favicon/core/favicon_service.h',
37 'favicon/core/favicon_url.cc', 37 'favicon/core/favicon_url.cc',
38 'favicon/core/favicon_url.h', 38 'favicon/core/favicon_url.h',
39 'favicon/core/large_icon_service.cc',
40 'favicon/core/large_icon_service.h',
39 ], 41 ],
40 'include_dirs': [ 42 'include_dirs': [
41 '..', 43 '..',
42 ], 44 ],
43 }, 45 },
44 ], 46 ],
45 'conditions': [ 47 'conditions': [
46 ['OS!="ios"', { 48 ['OS!="ios"', {
47 'targets': [ 49 'targets': [
48 { 50 {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'favicon/ios/web_favicon_driver.h', 91 'favicon/ios/web_favicon_driver.h',
90 ], 92 ],
91 'include_dirs': [ 93 'include_dirs': [
92 '..', 94 '..',
93 ], 95 ],
94 }, 96 },
95 ], 97 ],
96 }], 98 }],
97 ], 99 ],
98 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698