| 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 static_library("rappor") { | 6 static_library("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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 source_set("unit_tests") { | 56 source_set("unit_tests") { |
| 57 testonly = true | 57 testonly = true |
| 58 sources = [ | 58 sources = [ |
| 59 "bloom_filter_unittest.cc", | 59 "bloom_filter_unittest.cc", |
| 60 "byte_vector_utils_unittest.cc", | 60 "byte_vector_utils_unittest.cc", |
| 61 "log_uploader_unittest.cc", | 61 "log_uploader_unittest.cc", |
| 62 "rappor_metric_unittest.cc", | 62 "rappor_metric_unittest.cc", |
| 63 "rappor_prefs_unittest.cc", | 63 "rappor_prefs_unittest.cc", |
| 64 "rappor_service_unittest.cc", | 64 "rappor_service_unittest.cc", |
| 65 "rappor_utils_unittest.cc", | 65 "rappor_utils_unittest.cc", |
| 66 "sampler_unittest.cc", |
| 66 ] | 67 ] |
| 67 | 68 |
| 68 deps = [ | 69 deps = [ |
| 69 ":rappor", | 70 ":rappor", |
| 70 "//base/test:test_support", | 71 "//base/test:test_support", |
| 71 "//components/rappor/proto", | 72 "//components/rappor/proto", |
| 72 "//testing/gtest", | 73 "//testing/gtest", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| OLD | NEW |