OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 static_library("rappor") { | 5 static_library("rappor") { |
6 sources = [ | 6 sources = [ |
7 "bloom_filter.cc", | 7 "bloom_filter.cc", |
8 "bloom_filter.h", | 8 "bloom_filter.h", |
9 "byte_vector_utils.cc", | 9 "byte_vector_utils.cc", |
10 "byte_vector_utils.h", | 10 "byte_vector_utils.h", |
(...skipping 29 matching lines...) Expand all Loading... |
40 "//components/data_use_measurement/core", | 40 "//components/data_use_measurement/core", |
41 "//components/metrics", | 41 "//components/metrics", |
42 "//components/prefs", | 42 "//components/prefs", |
43 "//components/variations", | 43 "//components/variations", |
44 "//crypto", | 44 "//crypto", |
45 "//net", | 45 "//net", |
46 "//third_party/smhasher:cityhash", | 46 "//third_party/smhasher:cityhash", |
47 ] | 47 ] |
48 } | 48 } |
49 | 49 |
| 50 static_library("rappor_recorder") { |
| 51 sources = [ |
| 52 "rappor_recorder_impl.cc", |
| 53 "rappor_recorder_impl.h", |
| 54 ] |
| 55 |
| 56 public_deps = [ |
| 57 "//base", |
| 58 "//components/rappor/public/interfaces", |
| 59 ] |
| 60 |
| 61 deps = [ |
| 62 ":rappor", |
| 63 "//mojo/public/cpp/bindings", |
| 64 ] |
| 65 } |
| 66 |
50 static_library("test_support") { | 67 static_library("test_support") { |
51 testonly = true | 68 testonly = true |
52 sources = [ | 69 sources = [ |
53 "test_log_uploader.cc", | 70 "test_log_uploader.cc", |
54 "test_log_uploader.h", | 71 "test_log_uploader.h", |
55 "test_rappor_service.cc", | 72 "test_rappor_service.cc", |
56 "test_rappor_service.h", | 73 "test_rappor_service.h", |
57 ] | 74 ] |
58 | 75 |
59 public_deps = [ | 76 public_deps = [ |
(...skipping 24 matching lines...) Expand all Loading... |
84 ":test_support", | 101 ":test_support", |
85 "//base", | 102 "//base", |
86 "//base/test:test_support", | 103 "//base/test:test_support", |
87 "//components/metrics", | 104 "//components/metrics", |
88 "//components/prefs:test_support", | 105 "//components/prefs:test_support", |
89 "//net:test_support", | 106 "//net:test_support", |
90 "//testing/gtest", | 107 "//testing/gtest", |
91 "//url", | 108 "//url", |
92 ] | 109 ] |
93 } | 110 } |
OLD | NEW |