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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'rappor',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../crypto/crypto.gyp:crypto',
16 '../net/net.gyp:net',
17 '../third_party/smhasher/smhasher.gyp:cityhash',
18 '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
19 ],
20 'sources': [
21 'rappor/bloom_filter.cc',
22 'rappor/bloom_filter.h',
23 'rappor/byte_vector_utils.cc',
24 'rappor/byte_vector_utils.h',
25 'rappor/log_uploader.cc',
26 'rappor/log_uploader.h',
27 'rappor/proto/rappor_metric.proto',
28 'rappor/rappor_metric.cc',
29 'rappor/rappor_metric.h',
30 'rappor/rappor_parameters.cc',
31 'rappor/rappor_parameters.h',
32 'rappor/rappor_pref_names.cc',
33 'rappor/rappor_pref_names.h',
34 'rappor/rappor_service.cc',
35 'rappor/rappor_service.h',
36 ],
37 'variables': {
38 'proto_in_dir': 'rappor/proto',
39 'proto_out_dir': 'components/rappor/proto',
40 },
41 'includes': [ '../build/protoc.gypi' ],
42 },
43 ],
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698