| 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", |
| 11 "log_uploader.cc", | 11 "log_uploader.cc", |
| 12 "log_uploader.h", | 12 "log_uploader.h", |
| 13 "log_uploader_interface.h", | 13 "log_uploader_interface.h", |
| 14 "rappor_metric.cc", | 14 "rappor_metric.cc", |
| 15 "rappor_metric.h", | 15 "rappor_metric.h", |
| 16 "rappor_parameters.cc", | 16 "rappor_parameters.cc", |
| 17 "rappor_parameters.h", | |
| 18 "rappor_pref_names.cc", | 17 "rappor_pref_names.cc", |
| 19 "rappor_pref_names.h", | 18 "rappor_pref_names.h", |
| 20 "rappor_prefs.cc", | 19 "rappor_prefs.cc", |
| 21 "rappor_prefs.h", | 20 "rappor_prefs.h", |
| 22 "rappor_service.cc", | 21 "rappor_service_impl.cc", |
| 23 "rappor_service.h", | 22 "rappor_service_impl.h", |
| 24 "rappor_utils.cc", | 23 "rappor_utils.cc", |
| 25 "rappor_utils.h", | |
| 26 "reports.cc", | 24 "reports.cc", |
| 27 "reports.h", | 25 "reports.h", |
| 28 "sample.cc", | 26 "sample.cc", |
| 29 "sample.h", | |
| 30 "sampler.cc", | 27 "sampler.cc", |
| 31 "sampler.h", | 28 "sampler.h", |
| 32 ] | 29 ] |
| 33 | 30 |
| 34 public_deps = [ | 31 public_deps = [ |
| 35 "//components/rappor/proto", | 32 "//components/rappor/proto", |
| 33 "//components/rappor/public", |
| 36 ] | 34 ] |
| 37 | 35 |
| 38 deps = [ | 36 deps = [ |
| 39 "//base", | 37 "//base", |
| 40 "//components/data_use_measurement/core", | 38 "//components/data_use_measurement/core", |
| 41 "//components/metrics", | 39 "//components/metrics", |
| 42 "//components/prefs", | 40 "//components/prefs", |
| 43 "//components/variations", | 41 "//components/variations", |
| 44 "//crypto", | 42 "//crypto", |
| 45 "//net", | 43 "//net", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ":test_support", | 99 ":test_support", |
| 102 "//base", | 100 "//base", |
| 103 "//base/test:test_support", | 101 "//base/test:test_support", |
| 104 "//components/metrics", | 102 "//components/metrics", |
| 105 "//components/prefs:test_support", | 103 "//components/prefs:test_support", |
| 106 "//net:test_support", | 104 "//net:test_support", |
| 107 "//testing/gtest", | 105 "//testing/gtest", |
| 108 "//url", | 106 "//url", |
| 109 ] | 107 ] |
| 110 } | 108 } |
| OLD | NEW |