| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 sources = [ | 97 sources = [ |
| 98 "active_field_trials_unittest.cc", | 98 "active_field_trials_unittest.cc", |
| 99 "caching_permuted_entropy_provider_unittest.cc", | 99 "caching_permuted_entropy_provider_unittest.cc", |
| 100 "entropy_provider_unittest.cc", | 100 "entropy_provider_unittest.cc", |
| 101 "experiment_labels_unittest.cc", | 101 "experiment_labels_unittest.cc", |
| 102 "metrics_util_unittest.cc", | 102 "metrics_util_unittest.cc", |
| 103 "net/variations_http_headers_unittest.cc", | 103 "net/variations_http_headers_unittest.cc", |
| 104 "study_filtering_unittest.cc", | 104 "study_filtering_unittest.cc", |
| 105 "variations_associated_data_unittest.cc", | 105 "variations_associated_data_unittest.cc", |
| 106 "variations_http_header_provider_unittest.cc", | 106 "variations_http_header_provider_unittest.cc", |
| 107 "variations_params_manager.cc", |
| 108 "variations_params_manager.h", |
| 107 "variations_request_scheduler_unittest.cc", | 109 "variations_request_scheduler_unittest.cc", |
| 108 "variations_seed_processor_unittest.cc", | 110 "variations_seed_processor_unittest.cc", |
| 109 "variations_seed_simulator_unittest.cc", | 111 "variations_seed_simulator_unittest.cc", |
| 110 "variations_seed_store_unittest.cc", | 112 "variations_seed_store_unittest.cc", |
| 111 ] | 113 ] |
| 112 | 114 |
| 113 if (is_android || is_ios) { | 115 if (is_android || is_ios) { |
| 114 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] | 116 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] |
| 115 } | 117 } |
| 116 | 118 |
| 117 deps = [ | 119 deps = [ |
| 118 ":variations", | 120 ":variations", |
| 119 "net", | 121 "net", |
| 120 "proto", | 122 "proto", |
| 121 "//base/test:test_support", | 123 "//base/test:test_support", |
| 122 "//components/prefs:test_support", | 124 "//components/prefs:test_support", |
| 123 "//testing/gtest", | 125 "//testing/gtest", |
| 124 "//third_party/zlib:compression_utils", | 126 "//third_party/zlib:compression_utils", |
| 125 ] | 127 ] |
| 126 } | 128 } |
| OLD | NEW |