| 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 = [ |
| 11 "active_field_trials.cc", | 11 "active_field_trials.cc", |
| 12 "active_field_trials.h", | 12 "active_field_trials.h", |
| 13 "android/component_jni_registrar.cc", | 13 "android/component_jni_registrar.cc", |
| 14 "android/component_jni_registrar.h", | 14 "android/component_jni_registrar.h", |
| 15 "android/variations_associated_data_android.cc", | 15 "android/variations_associated_data_android.cc", |
| 16 "android/variations_associated_data_android.h", | 16 "android/variations_associated_data_android.h", |
| 17 "android/variations_seed_bridge.cc", | 17 "android/variations_seed_bridge.cc", |
| 18 "android/variations_seed_bridge.h", | 18 "android/variations_seed_bridge.h", |
| 19 "caching_permuted_entropy_provider.cc", | 19 "caching_permuted_entropy_provider.cc", |
| 20 "caching_permuted_entropy_provider.h", | 20 "caching_permuted_entropy_provider.h", |
| 21 "child_process_field_trial_syncer.cc", | 21 "child_process_field_trial_syncer.cc", |
| 22 "child_process_field_trial_syncer.h", | 22 "child_process_field_trial_syncer.h", |
| 23 "client_filterable_state.cc", |
| 24 "client_filterable_state.h", |
| 23 "entropy_provider.cc", | 25 "entropy_provider.cc", |
| 24 "entropy_provider.h", | 26 "entropy_provider.h", |
| 25 "experiment_labels.cc", | 27 "experiment_labels.cc", |
| 26 "experiment_labels.h", | 28 "experiment_labels.h", |
| 27 "metrics_util.cc", | 29 "metrics_util.cc", |
| 28 "metrics_util.h", | 30 "metrics_util.h", |
| 29 "pref_names.cc", | 31 "pref_names.cc", |
| 30 "pref_names.h", | 32 "pref_names.h", |
| 31 "processed_study.cc", | 33 "processed_study.cc", |
| 32 "processed_study.h", | 34 "processed_study.h", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 ":variations", | 138 ":variations", |
| 137 "net", | 139 "net", |
| 138 "proto", | 140 "proto", |
| 139 "//base/test:test_support", | 141 "//base/test:test_support", |
| 140 "//components/prefs:test_support", | 142 "//components/prefs:test_support", |
| 141 "//components/variations/field_trial_config:unit_tests", | 143 "//components/variations/field_trial_config:unit_tests", |
| 142 "//testing/gtest", | 144 "//testing/gtest", |
| 143 "//third_party/zlib/google:compression_utils", | 145 "//third_party/zlib/google:compression_utils", |
| 144 ] | 146 ] |
| 145 } | 147 } |
| OLD | NEW |