Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: components/rappor/BUILD.gn

Issue 1090683003: Alternative Multi-dimensional Rappor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sampler test Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698