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 static_library("variations") { | 5 static_library("variations") { |
6 sources = [ | 6 sources = [ |
7 "active_field_trials.cc", | 7 "active_field_trials.cc", |
8 "active_field_trials.h", | 8 "active_field_trials.h", |
| 9 "android/component_jni_registrar.cc", |
| 10 "android/component_jni_registrar.h", |
| 11 "android/variations_associated_data_android.cc", |
| 12 "android/variations_associated_data_android.h", |
9 "caching_permuted_entropy_provider.cc", | 13 "caching_permuted_entropy_provider.cc", |
10 "caching_permuted_entropy_provider.h", | 14 "caching_permuted_entropy_provider.h", |
11 "entropy_provider.cc", | 15 "entropy_provider.cc", |
12 "entropy_provider.h", | 16 "entropy_provider.h", |
13 "metrics_util.cc", | 17 "metrics_util.cc", |
14 "metrics_util.h", | 18 "metrics_util.h", |
15 "pref_names.cc", | 19 "pref_names.cc", |
16 "pref_names.h", | 20 "pref_names.h", |
17 "processed_study.cc", | 21 "processed_study.cc", |
18 "processed_study.h", | 22 "processed_study.h", |
| 23 "proto/client_variations.proto", |
| 24 "proto/permuted_entropy_cache.proto", |
| 25 "proto/study.proto", |
| 26 "proto/variations_seed.proto", |
19 "study_filtering.cc", | 27 "study_filtering.cc", |
20 "study_filtering.h", | 28 "study_filtering.h", |
21 "variations_associated_data.cc", | 29 "variations_associated_data.cc", |
22 "variations_associated_data.h", | 30 "variations_associated_data.h", |
| 31 "variations_http_header_provider.cc", |
| 32 "variations_http_header_provider.h", |
23 "variations_seed_processor.cc", | 33 "variations_seed_processor.cc", |
24 "variations_seed_processor.h", | 34 "variations_seed_processor.h", |
25 "variations_seed_simulator.cc", | 35 "variations_seed_simulator.cc", |
26 "variations_seed_simulator.h", | 36 "variations_seed_simulator.h", |
27 ] | 37 ] |
28 | 38 |
29 deps = [ | 39 deps = [ |
30 "//base", | 40 "//base", |
31 "//components/variations/proto", | 41 "//components/variations/proto", |
32 "//third_party/mt19937ar", | 42 "//third_party/mt19937ar", |
33 ] | 43 ] |
34 } | 44 } |
OLD | NEW |