| 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 source_set("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", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 deps = [ | 117 deps = [ |
| 118 ":variations", | 118 ":variations", |
| 119 "net", | 119 "net", |
| 120 "proto", | 120 "proto", |
| 121 "//base/test:test_support", | 121 "//base/test:test_support", |
| 122 "//components/prefs:test_support", | 122 "//components/prefs:test_support", |
| 123 "//testing/gtest", | 123 "//testing/gtest", |
| 124 "//third_party/zlib:compression_utils", | 124 "//third_party/zlib:compression_utils", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |