summaryrefslogtreecommitdiffstats
path: root/chromium/components/history.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/history.gypi')
-rw-r--r--chromium/components/history.gypi54
1 files changed, 54 insertions, 0 deletions
diff --git a/chromium/components/history.gypi b/chromium/components/history.gypi
new file mode 100644
index 00000000000..3c1d3a87958
--- /dev/null
+++ b/chromium/components/history.gypi
@@ -0,0 +1,54 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'history_core_browser',
+ '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_common',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'history/core/common/thumbnail_score.cc',
+ 'history/core/common/thumbnail_score.h',
+ ],
+ },
+ {
+ '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',
+ ],
+ },
+ ],
+}