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

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 7 years 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 (c) 2013 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:murmurhash3',
18 'rappor_proto',
19 ],
20 'sources': [
21 'rappor/bloom_filter.cc',
22 'rappor/bloom_filter.h',
23 'rappor/bytevector.cc',
24 'rappor/bytevector.h',
25 'rappor/log_uploader.cc',
26 'rappor/log_uploader.h',
27 'rappor/rappor.cc',
28 'rappor/rappor.h',
29 'rappor/rappor_parameters.h',
30 'rappor/rappor_pref_names.cc',
31 'rappor/rappor_pref_names.h',
32 'rappor/rappor_recorder.cc',
33 'rappor/rappor_recorder.h',
34 'rappor/rappor_reporter.cc',
35 'rappor/rappor_reporter.h',
36 'rappor/rappor_service.cc',
37 'rappor/rappor_service.h',
38 'rappor/rappor_utils.h',
39 'rappor/rappor_utils.cc',
40 ],
41 },
42 {
43 # Protobuf compiler / generator for RAPPOR.
Alexei Svitkine (slow) 2013/12/19 19:47:02 Nit: You can merge this with the main target to si
Steven Holte 2013/12/20 03:03:55 Done.
44 'target_name': 'rappor_proto',
45 'type': 'static_library',
46 'sources': [
47 'rappor/proto/rappor_metric.proto',
48 ],
49 'variables': {
50 'proto_in_dir': 'rappor/proto',
51 'proto_out_dir': 'components/rappor/proto',
52 },
53 'includes': [ '../build/protoc.gypi' ],
54 },
55 ],
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698