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

Side by Side Diff: components/favicon.gypi

Issue 1310513006: Adding components to dependencies on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing Created 5 years, 3 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'sources': [ 64 'sources': [
65 # Note: sources list duplicated in GN build. 65 # Note: sources list duplicated in GN build.
66 'favicon/content/content_favicon_driver.cc', 66 'favicon/content/content_favicon_driver.cc',
67 'favicon/content/content_favicon_driver.h', 67 'favicon/content/content_favicon_driver.h',
68 'favicon/content/favicon_url_util.cc', 68 'favicon/content/favicon_url_util.cc',
69 'favicon/content/favicon_url_util.h', 69 'favicon/content/favicon_url_util.h',
70 ], 70 ],
71 'include_dirs': [ 71 'include_dirs': [
72 '..', 72 '..',
73 ], 73 ],
74 'sources!': [
75 'favicon/core/fallback_icon_client.h',
76 'favicon/core/fallback_icon_service.cc',
77 'favicon/core/fallback_icon_service.h',
78 ],
74 }, 79 },
75 ], 80 ],
76 }], 81 }],
77 ['OS=="ios"', { 82 ['OS=="ios"', {
78 'targets': [ 83 'targets': [
79 { 84 {
80 'target_name': 'favicon_ios', 85 'target_name': 'favicon_ios',
81 'type': 'static_library', 86 'type': 'static_library',
82 'dependencies': [ 87 'dependencies': [
83 '../base/base.gyp:base', 88 '../base/base.gyp:base',
84 '../ios/web/ios_web.gyp:ios_web', 89 '../ios/web/ios_web.gyp:ios_web',
85 '../ui/gfx/gfx.gyp:gfx', 90 '../ui/gfx/gfx.gyp:gfx',
86 'favicon_base', 91 'favicon_base',
87 'favicon_core', 92 'favicon_core',
88 ], 93 ],
89 'sources': [ 94 'sources': [
90 'favicon/ios/favicon_url_util.cc', 95 'favicon/ios/favicon_url_util.cc',
91 'favicon/ios/favicon_url_util.h', 96 'favicon/ios/favicon_url_util.h',
92 'favicon/ios/web_favicon_driver.cc', 97 'favicon/ios/web_favicon_driver.cc',
93 'favicon/ios/web_favicon_driver.h', 98 'favicon/ios/web_favicon_driver.h',
94 ], 99 ],
95 'include_dirs': [ 100 'include_dirs': [
96 '..', 101 '..',
97 ], 102 ],
98 }, 103 },
99 ], 104 ],
100 }], 105 }],
101 ], 106 ],
102 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698