Index: components/history.gypi |
diff --git a/components/history.gypi b/components/history.gypi |
index 8b7821e917461b88a2923a1f0bf35398189c634a..1a17a6c962bc7a4aa459a89d25860ddf43bd9b32 100644 |
--- a/components/history.gypi |
+++ b/components/history.gypi |
@@ -6,16 +6,34 @@ |
'targets': [ |
{ |
'target_name': 'history_core_browser', |
- 'type': 'none', |
+ 'type': 'static_library', |
'include_dirs': [ |
'..', |
], |
'dependencies': [ |
'../base/base.gyp:base', |
+ '../url/url.gyp:url_lib', |
'keyed_service_core', |
], |
'sources': [ |
'history/core/browser/history_client.h', |
+ 'history/core/browser/history_client.cc', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'history_core_test_support', |
+ 'type': 'static_library', |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ 'dependencies': [ |
+ 'history_core_browser', |
+ '../base/base.gyp:base', |
+ '../url/url.gyp:url_lib', |
+ ], |
+ 'sources': [ |
+ 'history/core/test/history_client_fake_bookmarks.cc', |
+ 'history/core/test/history_client_fake_bookmarks.h', |
], |
}, |
], |