Make checkdeps.py check third_party.
[chromium-blink-merge.git] / components / variations / BUILD.gn
blobed818701cd9573b9163fe16faace0c5bc40dc347
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
3 # found in the LICENSE file.
5 if (is_android) {
6   import("//build/config/android/rules.gni")
9 source_set("variations") {
10   sources = [
11     "active_field_trials.cc",
12     "active_field_trials.h",
13     "android/component_jni_registrar.cc",
14     "android/component_jni_registrar.h",
15     "android/variations_associated_data_android.cc",
16     "android/variations_associated_data_android.h",
17     "caching_permuted_entropy_provider.cc",
18     "caching_permuted_entropy_provider.h",
19     "entropy_provider.cc",
20     "entropy_provider.h",
21     "metrics_util.cc",
22     "metrics_util.h",
23     "pref_names.cc",
24     "pref_names.h",
25     "processed_study.cc",
26     "processed_study.h",
27     "proto/client_variations.proto",
28     "proto/permuted_entropy_cache.proto",
29     "proto/study.proto",
30     "proto/variations_seed.proto",
31     "study_filtering.cc",
32     "study_filtering.h",
33     "variations_associated_data.cc",
34     "variations_associated_data.h",
35     "variations_seed_processor.cc",
36     "variations_seed_processor.h",
37     "variations_seed_simulator.cc",
38     "variations_seed_simulator.h",
39   ]
41   deps = [
42     "proto",
43     "//base",
44     "//base:prefs",
45     "//third_party/mt19937ar",
46   ]
48   if (is_android) {
49     deps += [ ":jni" ]
50   }
53 if (is_android) {
54   # GYP: //components/variations.gypi:variations_jni_headers
55   generate_jni("jni") {
56     sources = [
57       "android/java/src/org/chromium/components/variations/VariationsAssociatedData.java",
58     ]
59     jni_package = "variations"
60   }
63 source_set("unit_tests") {
64   testonly = true
65   sources = [
66     "active_field_trials_unittest.cc",
67     "caching_permuted_entropy_provider_unittest.cc",
68     "entropy_provider_unittest.cc",
69     "metrics_util_unittest.cc",
70     "net/variations_http_header_provider_unittest.cc",
71     "study_filtering_unittest.cc",
72     "variations_associated_data_unittest.cc",
73     "variations_seed_processor_unittest.cc",
74     "variations_seed_simulator_unittest.cc",
75   ]
77   deps = [
78     ":variations",
79     "net",
80     "proto",
81     "//base:prefs_test_support",
82     "//base/test:test_support",
83     "//testing/gtest",
84   ]