Index: components/favicon.gypi |
diff --git a/components/favicon.gypi b/components/favicon.gypi |
index f9d4739f23c225b1e4a5e4300a70e05323e8f5bc..13a2151890a78f2058c5c67d2f26047095c0d2ea 100644 |
--- a/components/favicon.gypi |
+++ b/components/favicon.gypi |
@@ -7,9 +7,35 @@ |
{ |
'target_name': 'favicon_core', |
'type': 'static_library', |
+ 'include_dirs': [ |
+ '..', |
+ ], |
'sources': [ |
+ 'favicon/content/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/browser/content_favicon_driver.cc', |
+ 'favicon/content/browser/content_favicon_driver.h', |
+ ], |
+ }, |
+ ], |
+ }], |
+ ], |
} |