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

Side by Side Diff: components/favicon.gypi

Issue 227153007: Remove dependency on Profile's IsOffTheRecord in favicon_handler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FAVICON_create_core_dir
Patch Set: Review fixes. 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': [
11 '..',
12 ],
10 'sources': [ 13 'sources': [
14 'favicon/content/favicon_driver.h',
11 'favicon/core/favicon_handler_delegate.h', 15 'favicon/core/favicon_handler_delegate.h',
12 ], 16 ],
13 }, 17 },
14 ], 18 ],
19 'conditions': [
20 ['OS != "ios"', {
21 'targets': [
22 {
23 'target_name': 'favicon_content',
24 'type': 'static_library',
25 'dependencies': [
26 'favicon_core',
27 '../content/content.gyp:content_browser',
28 '../content/content.gyp:content_common',
29 ],
30 'include_dirs': [
31 '..',
32 ],
33 'sources': [
34 'favicon/content/browser/content_favicon_driver.cc',
35 'favicon/content/browser/content_favicon_driver.h',
36 ],
37 },
38 ],
39 }],
40 ],
15 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698