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

Unified Diff: components/rappor.gypi

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/rappor.gypi
diff --git a/components/rappor.gypi b/components/rappor.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..4a170edb1c34de3b49829060b20280b997f9b315
--- /dev/null
+++ b/components/rappor.gypi
@@ -0,0 +1,44 @@
+# 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': 'rappor',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../crypto/crypto.gyp:crypto',
+ '../net/net.gyp:net',
+ '../third_party/smhasher/smhasher.gyp:cityhash',
+ 'variations',
Ilya Sherman 2014/02/13 01:39:03 IMO it's not appropriate for the rappor component
Steven Holte 2014/02/13 05:11:12 No, it doesn't. Unfortunately there a metrics com
Ilya Sherman 2014/02/13 23:23:08 We should move code out of //chrome/browser/metric
Steven Holte 2014/02/14 02:53:28 Done. Though variations dependency is still requi
+ ],
+ 'sources': [
+ 'rappor/bloom_filter.cc',
+ 'rappor/bloom_filter.h',
+ 'rappor/byte_vector_utils.cc',
+ 'rappor/byte_vector_utils.h',
+ 'rappor/log_uploader.cc',
+ 'rappor/log_uploader.h',
+ 'rappor/proto/rappor_metric.proto',
+ 'rappor/rappor_metric.cc',
+ 'rappor/rappor_metric.h',
+ 'rappor/rappor_parameters.cc',
+ 'rappor/rappor_parameters.h',
+ 'rappor/rappor_pref_names.cc',
+ 'rappor/rappor_pref_names.h',
+ 'rappor/rappor_service.cc',
+ 'rappor/rappor_service.h',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'rappor/proto',
+ 'proto_out_dir': 'components/rappor/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698