| 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 # GYP version: components/rappor.gypi:rappor | 5 # GYP version: components/rappor.gypi:rappor |
| 6 source_set("rappor") { | 6 source_set("rappor") { |
| 7 sources = [ | 7 sources = [ |
| 8 "bloom_filter.cc", | 8 "bloom_filter.cc", |
| 9 "bloom_filter.h", | 9 "bloom_filter.h", |
| 10 "byte_vector_utils.cc", | 10 "byte_vector_utils.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "reports.cc", | 27 "reports.cc", |
| 28 "reports.h", | 28 "reports.h", |
| 29 "sample.cc", | 29 "sample.cc", |
| 30 "sample.h", | 30 "sample.h", |
| 31 "sampler.cc", | 31 "sampler.cc", |
| 32 "sampler.h", | 32 "sampler.h", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 "//base", | 36 "//base", |
| 37 "//components/data_use_measurement/core", |
| 37 "//components/metrics", | 38 "//components/metrics", |
| 38 "//components/rappor/proto", | 39 "//components/rappor/proto", |
| 39 "//components/variations", | 40 "//components/variations", |
| 40 "//crypto", | 41 "//crypto", |
| 41 "//net", | 42 "//net", |
| 42 "//third_party/smhasher:cityhash", | 43 "//third_party/smhasher:cityhash", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| 45 | 46 |
| 46 # GYP version: components/rappor.gypi:rappor_test_support | 47 # GYP version: components/rappor.gypi:rappor_test_support |
| (...skipping 25 matching lines...) Expand all Loading... |
| 72 "sampler_unittest.cc", | 73 "sampler_unittest.cc", |
| 73 ] | 74 ] |
| 74 | 75 |
| 75 deps = [ | 76 deps = [ |
| 76 ":rappor", | 77 ":rappor", |
| 77 "//base/test:test_support", | 78 "//base/test:test_support", |
| 78 "//components/rappor/proto", | 79 "//components/rappor/proto", |
| 79 "//testing/gtest", | 80 "//testing/gtest", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| OLD | NEW |