| Index: components/favicon.gypi
|
| diff --git a/components/favicon.gypi b/components/favicon.gypi
|
| index f9d4739f23c225b1e4a5e4300a70e05323e8f5bc..f44d667a41426199021252409db6051402763053 100644
|
| --- a/components/favicon.gypi
|
| +++ b/components/favicon.gypi
|
| @@ -7,9 +7,35 @@
|
| {
|
| 'target_name': 'favicon_core',
|
| 'type': 'static_library',
|
| + 'include_dirs': [
|
| + '..',
|
| + ],
|
| 'sources': [
|
| + 'favicon/core/favicon_driver.h',
|
| 'favicon/core/favicon_handler_delegate.h',
|
| ],
|
| },
|
| ],
|
| + 'conditions': [
|
| + ['OS != "ios"', {
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'favicon_content',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + 'favicon_core',
|
| + '../content/content.gyp:content_browser',
|
| + '../content/content.gyp:content_common',
|
| + ],
|
| + 'include_dirs': [
|
| + '..',
|
| + ],
|
| + 'sources': [
|
| + 'favicon/content/content_favicon_driver.cc',
|
| + 'favicon/content/content_favicon_driver.h',
|
| + ],
|
| + },
|
| + ],
|
| + }],
|
| + ],
|
| }
|
|
|