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

Unified Diff: third_party/smhasher/smhasher.gyp

Issue 10701151: DuplicateContentResourceHandler to monitor resources and track how many times th… (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 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: third_party/smhasher/smhasher.gyp
===================================================================
--- third_party/smhasher/smhasher.gyp (revision 146828)
+++ third_party/smhasher/smhasher.gyp (working copy)
@@ -5,6 +5,22 @@
{
'targets': [
{
+ 'target_name': 'pmurhash',
+ 'type': 'static_library',
+ 'sources': [
+ 'src/PMurHash.h',
+ 'src/PMurHash.c',
+ ],
+ },
+ {
+ 'target_name': 'murmurhash2',
gavinp 2012/07/18 12:13:32 Probably we can lose this target.
frankwang 2012/07/19 16:10:26 Done.
+ 'type': 'static_library',
+ 'sources': [
+ 'src/MurmurHash2.h',
+ 'src/MurmurHash2.cpp',
+ ],
+ },
+ {
'target_name': 'murmurhash3',
'type': 'static_library',
'sources': [

Powered by Google App Engine
This is Rietveld 408576698