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

Unified Diff: components/history.gypi

Issue 305443004: Introduce HistoryClient interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@371825
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: components/history.gypi
diff --git a/chrome_elf/dll_hash.gypi b/components/history.gypi
similarity index 51%
copy from chrome_elf/dll_hash.gypi
copy to components/history.gypi
index 9e89a241e42be41118b9712ce3482de6969e530e..ab8b69895b88738fee3c04f397aa5bbaea335da9 100644
--- a/chrome_elf/dll_hash.gypi
+++ b/components/history.gypi
@@ -1,31 +1,36 @@
# 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': 'dll_hash',
+ 'target_name': 'history_core_browser',
'type': 'static_library',
blundell 2014/05/27 09:56:38 i think this has to be type None until it has sour
sdefresne 2014/05/28 17:10:42 Done.
+ 'include_dirs': [
+ '..',
+ ],
'dependencies': [
'../base/base.gyp:base',
],
'sources': [
- 'dll_hash/dll_hash.cc',
- 'dll_hash/dll_hash.h',
+ 'history/core/browser/history_client.h',
],
},
{
- 'target_name': 'dll_hash_main',
- 'type': 'executable',
- 'dependencies': [
- 'dll_hash',
- ],
+ 'target_name': 'history_core_test_support',
+ 'type': 'static_library',
'include_dirs': [
'..',
],
+ 'dependencies': [
+ 'history_core_browser',
+ '../base/base.gyp:base',
+ ],
'sources': [
- 'dll_hash/dll_hash_main.cc',
+ 'history/core/browser/test_history_client.cc',
blundell 2014/05/27 09:56:38 history/core/test
sdefresne 2014/05/28 17:10:42 Done.
+ 'history/core/browser/test_history_client.h',
],
- }
- ]
-}
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698