OLD | NEW |
(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 static_library("rappor") { |
| 6 sources = [ |
| 7 "bloom_filter.cc", |
| 8 "bloom_filter.h", |
| 9 "byte_vector_utils.cc", |
| 10 "byte_vector_utils.h", |
| 11 "log_uploader.cc", |
| 12 "log_uploader.h", |
| 13 "rappor_metric.cc", |
| 14 "rappor_metric.h", |
| 15 "rappor_parameters.cc", |
| 16 "rappor_parameters.h", |
| 17 "rappor_pref_names.cc", |
| 18 "rappor_pref_names.h", |
| 19 "rappor_service.cc", |
| 20 "rappor_service.h", |
| 21 ] |
| 22 |
| 23 deps = [ |
| 24 "//base", |
| 25 "//components/metrics", |
| 26 "//components/rappor/proto", |
| 27 "//components/variations", |
| 28 "//crypto", |
| 29 "//net", |
| 30 "//third_party/smhasher:cityhash", |
| 31 ] |
| 32 } |
OLD | NEW |