| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("variations") { | 9 static_library("variations") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "pref_names.cc", | 33 "pref_names.cc", |
| 34 "pref_names.h", | 34 "pref_names.h", |
| 35 "processed_study.cc", | 35 "processed_study.cc", |
| 36 "processed_study.h", | 36 "processed_study.h", |
| 37 "proto/client_variations.proto", | 37 "proto/client_variations.proto", |
| 38 "proto/permuted_entropy_cache.proto", | 38 "proto/permuted_entropy_cache.proto", |
| 39 "proto/study.proto", | 39 "proto/study.proto", |
| 40 "proto/variations_seed.proto", | 40 "proto/variations_seed.proto", |
| 41 "study_filtering.cc", | 41 "study_filtering.cc", |
| 42 "study_filtering.h", | 42 "study_filtering.h", |
| 43 "synthetic_trial_registry.cc", |
| 44 "synthetic_trial_registry.h", |
| 43 "synthetic_trials.cc", | 45 "synthetic_trials.cc", |
| 44 "synthetic_trials.h", | 46 "synthetic_trials.h", |
| 45 "synthetic_trials_active_group_id_provider.cc", | 47 "synthetic_trials_active_group_id_provider.cc", |
| 46 "synthetic_trials_active_group_id_provider.h", | 48 "synthetic_trials_active_group_id_provider.h", |
| 47 "variations_associated_data.cc", | 49 "variations_associated_data.cc", |
| 48 "variations_associated_data.h", | 50 "variations_associated_data.h", |
| 49 "variations_experiment_util.cc", | 51 "variations_experiment_util.cc", |
| 50 "variations_experiment_util.h", | 52 "variations_experiment_util.h", |
| 51 "variations_http_header_provider.cc", | 53 "variations_http_header_provider.cc", |
| 52 "variations_http_header_provider.h", | 54 "variations_http_header_provider.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 testonly = true | 121 testonly = true |
| 120 sources = [ | 122 sources = [ |
| 121 "active_field_trials_unittest.cc", | 123 "active_field_trials_unittest.cc", |
| 122 "caching_permuted_entropy_provider_unittest.cc", | 124 "caching_permuted_entropy_provider_unittest.cc", |
| 123 "child_process_field_trial_syncer_unittest.cc", | 125 "child_process_field_trial_syncer_unittest.cc", |
| 124 "entropy_provider_unittest.cc", | 126 "entropy_provider_unittest.cc", |
| 125 "experiment_labels_unittest.cc", | 127 "experiment_labels_unittest.cc", |
| 126 "metrics_util_unittest.cc", | 128 "metrics_util_unittest.cc", |
| 127 "net/variations_http_headers_unittest.cc", | 129 "net/variations_http_headers_unittest.cc", |
| 128 "study_filtering_unittest.cc", | 130 "study_filtering_unittest.cc", |
| 131 "synthetic_trial_registry_unittest.cc", |
| 129 "variations_associated_data_unittest.cc", | 132 "variations_associated_data_unittest.cc", |
| 130 "variations_http_header_provider_unittest.cc", | 133 "variations_http_header_provider_unittest.cc", |
| 131 "variations_request_scheduler_unittest.cc", | 134 "variations_request_scheduler_unittest.cc", |
| 132 "variations_seed_processor_unittest.cc", | 135 "variations_seed_processor_unittest.cc", |
| 133 "variations_seed_simulator_unittest.cc", | 136 "variations_seed_simulator_unittest.cc", |
| 134 "variations_seed_store_unittest.cc", | 137 "variations_seed_store_unittest.cc", |
| 135 ] | 138 ] |
| 136 | 139 |
| 137 if (is_android || is_ios) { | 140 if (is_android || is_ios) { |
| 138 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] | 141 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] |
| 139 } | 142 } |
| 140 | 143 |
| 141 deps = [ | 144 deps = [ |
| 142 ":variations", | 145 ":variations", |
| 143 "net", | 146 "net", |
| 144 "proto", | 147 "proto", |
| 145 "//base/test:test_support", | 148 "//base/test:test_support", |
| 146 "//components/prefs:test_support", | 149 "//components/prefs:test_support", |
| 147 "//components/variations/field_trial_config:unit_tests", | 150 "//components/variations/field_trial_config:unit_tests", |
| 148 "//testing/gtest", | 151 "//testing/gtest", |
| 149 "//third_party/zlib/google:compression_utils", | 152 "//third_party/zlib/google:compression_utils", |
| 150 ] | 153 ] |
| 151 } | 154 } |
| OLD | NEW |