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

Side by Side Diff: components/favicon.gypi

Issue 228783002: Moves knowledge of Profile out of FaviconHandler, into FaviconTabHelper. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FAVICON_3
Patch Set: Created 6 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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'target_name': 'favicon_core', 8 'target_name': 'favicon_core',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 'favicon/content/favicon_driver.h', 14 'favicon/core/browser/favicon_client.h',
15 'favicon/core/favicon_handler_delegate.h', 15 'favicon/core/favicon_handler_delegate.h',
16 ], 16 ],
17 }, 17 },
18 ], 18 ],
19 'conditions': [ 19 'conditions': [
20 ['OS != "ios"', { 20 ['OS != "ios"', {
21 'targets': [ 21 'targets': [
22 { 22 {
23 'target_name': 'favicon_content', 23 'target_name': 'favicon_content',
24 'type': 'static_library', 24 'type': 'static_library',
25 'dependencies': [ 25 'dependencies': [
26 'favicon_core', 26 'favicon_core',
27 '../content/content.gyp:content_browser', 27 '../content/content.gyp:content_browser',
28 '../content/content.gyp:content_common', 28 '../content/content.gyp:content_common',
29 ], 29 ],
30 'include_dirs': [ 30 'include_dirs': [
31 '..', 31 '..',
32 ], 32 ],
33 'sources': [ 33 'sources': [
34 'favicon/content/browser/content_favicon_driver.cc', 34 'favicon/content/browser/content_favicon_driver.cc',
35 'favicon/content/browser/content_favicon_driver.h', 35 'favicon/content/browser/content_favicon_driver.h',
36 ], 36 ],
37 }, 37 },
38 ], 38 ],
39 }], 39 }],
40 ], 40 ],
41 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698