OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 static_library("variations") { |
| 6 sources = [ |
| 7 "active_field_trials.cc", |
| 8 "active_field_trials.h", |
| 9 "caching_permuted_entropy_provider.cc", |
| 10 "caching_permuted_entropy_provider.h", |
| 11 "entropy_provider.cc", |
| 12 "entropy_provider.h", |
| 13 "metrics_util.cc", |
| 14 "metrics_util.h", |
| 15 "pref_names.cc", |
| 16 "pref_names.h", |
| 17 "processed_study.cc", |
| 18 "processed_study.h", |
| 19 "study_filtering.cc", |
| 20 "study_filtering.h", |
| 21 "variations_associated_data.cc", |
| 22 "variations_associated_data.h", |
| 23 "variations_seed_processor.cc", |
| 24 "variations_seed_processor.h", |
| 25 "variations_seed_simulator.cc", |
| 26 "variations_seed_simulator.h", |
| 27 ] |
| 28 |
| 29 deps = [ |
| 30 "//base", |
| 31 "//components/variations/proto", |
| 32 "//third_party/mt19937ar", |
| 33 ] |
| 34 } |
OLD | NEW |