[Sync] Componentize UIModelWorker.
[chromium-blink-merge.git] / components / rappor.gypi
blob8dd2dcf3641878ecc6e379a171b0a8eb061d2123
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.
6   'targets': [
7     {
8       # GN version: //components/rappor
9       'target_name': 'rappor',
10       'type': 'static_library',
11       'include_dirs': [
12         '..',
13       ],
14       'dependencies': [
15         '../base/base.gyp:base',
16         '../crypto/crypto.gyp:crypto',
17         '../net/net.gyp:net',
18         '../third_party/smhasher/smhasher.gyp:cityhash',
19         'data_use_measurement_core',
20         'metrics',
21         'variations',
22       ],
23       'sources': [
24         # Note: sources list duplicated in GN build.
25         'rappor/bloom_filter.cc',
26         'rappor/bloom_filter.h',
27         'rappor/byte_vector_utils.cc',
28         'rappor/byte_vector_utils.h',
29         'rappor/log_uploader.cc',
30         'rappor/log_uploader.h',
31         'rappor/log_uploader_interface.h',
32         'rappor/proto/rappor_metric.proto',
33         'rappor/rappor_metric.cc',
34         'rappor/rappor_metric.h',
35         'rappor/rappor_parameters.cc',
36         'rappor/rappor_parameters.h',
37         'rappor/rappor_pref_names.cc',
38         'rappor/rappor_pref_names.h',
39         'rappor/rappor_prefs.cc',
40         'rappor/rappor_prefs.h',
41         'rappor/rappor_service.cc',
42         'rappor/rappor_service.h',
43         'rappor/rappor_utils.cc',
44         'rappor/rappor_utils.h',
45         'rappor/reports.cc',
46         'rappor/reports.h',
47         'rappor/sample.cc',
48         'rappor/sample.h',
49         'rappor/sampler.cc',
50         'rappor/sampler.h',
51       ],
52       'variables': {
53         'proto_in_dir': 'rappor/proto',
54         'proto_out_dir': 'components/rappor/proto',
55       },
56       'includes': [ '../build/protoc.gypi' ],
57     },
58     {
59       # GN version: //components/rappor:test_support
60       'target_name': 'rappor_test_support',
61       'type': 'static_library',
62       'include_dirs': [
63         '..',
64       ],
65       'dependencies': [
66         'rappor',
67       ],
68       'sources': [
69         'rappor/test_log_uploader.cc',
70         'rappor/test_log_uploader.h',
71         'rappor/test_rappor_service.cc',
72         'rappor/test_rappor_service.h',
73       ],
74     },
75   ],