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', |
], |
- } |
- ] |
-} |
+ }, |
+ ], |
+} |