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

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, 11 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 (c) 2013 The Chromium Authors. All rights reserved.
Ilya Sherman 2014/01/10 11:00:32 nit: 2014, and no "(c)"
Steven Holte 2014/01/14 00:47:54 Done.
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 ],
19 'sources': [
20 'rappor/bloom_filter.cc',
21 'rappor/bloom_filter.h',
22 'rappor/byte_vector_utils.cc',
23 'rappor/byte_vector_utils.h',
24 'rappor/log_uploader.cc',
25 'rappor/log_uploader.h',
26 'rappor/proto/rappor_metric.proto',
27 'rappor/rappor_metric.cc',
28 'rappor/rappor_metric.h',
29 'rappor/rappor_parameters.h',
30 'rappor/rappor_pref_names.cc',
31 'rappor/rappor_pref_names.h',
32 'rappor/rappor_service.cc',
33 'rappor/rappor_service.h',
34 ],
35 'variables': {
36 'proto_in_dir': 'rappor/proto',
37 'proto_out_dir': 'components/rappor/proto',
38 },
39 'includes': [ '../build/protoc.gypi' ],
40 },
41 ],
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698