summaryrefslogtreecommitdiff
path: root/chromium/components/variations/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/variations/BUILD.gn')
-rw-r--r--chromium/components/variations/BUILD.gn12
1 files changed, 7 insertions, 5 deletions
diff --git a/chromium/components/variations/BUILD.gn b/chromium/components/variations/BUILD.gn
index 991ea3f41c9..bd2a7fbb775 100644
--- a/chromium/components/variations/BUILD.gn
+++ b/chromium/components/variations/BUILD.gn
@@ -25,10 +25,10 @@ static_library("variations") {
"entropy_provider.h",
"experiment_labels.cc",
"experiment_labels.h",
+ "hashing.cc",
+ "hashing.h",
"metrics.cc",
"metrics.h",
- "metrics_util.cc",
- "metrics_util.h",
"platform_field_trials.h",
"pref_names.cc",
"pref_names.h",
@@ -83,7 +83,6 @@ static_library("variations") {
"//components/crash/core/common:crash_key",
"//components/prefs",
"//crypto",
- "//third_party/mt19937ar",
"//third_party/protobuf:protobuf_lite",
"//third_party/zlib/google:compression_utils",
]
@@ -128,7 +127,8 @@ source_set("unit_tests") {
"child_process_field_trial_syncer_unittest.cc",
"entropy_provider_unittest.cc",
"experiment_labels_unittest.cc",
- "metrics_util_unittest.cc",
+ "hashing_unittest.cc",
+ "net/variations_command_line_unittest.cc",
"net/variations_http_headers_unittest.cc",
"study_filtering_unittest.cc",
"synthetic_trial_registry_unittest.cc",
@@ -151,7 +151,8 @@ source_set("unit_tests") {
"proto",
"//base/test:test_support",
"//components/prefs:test_support",
- "//components/variations/field_trial_config:unit_tests",
+ "//components/variations/field_trial_config:field_trial_config",
+ "//testing/gmock",
"//testing/gtest",
"//third_party/zlib/google:compression_utils",
]
@@ -165,6 +166,7 @@ test("variations_unittests") {
deps = [
":unit_tests",
"//components/test:test_support",
+ "//components/variations/field_trial_config:unit_tests",
"//components/variations/service:unit_tests",
]
}