| 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 source_set("variations") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "processed_study.cc", | 25 "processed_study.cc", |
| 26 "processed_study.h", | 26 "processed_study.h", |
| 27 "proto/client_variations.proto", | 27 "proto/client_variations.proto", |
| 28 "proto/permuted_entropy_cache.proto", | 28 "proto/permuted_entropy_cache.proto", |
| 29 "proto/study.proto", | 29 "proto/study.proto", |
| 30 "proto/variations_seed.proto", | 30 "proto/variations_seed.proto", |
| 31 "study_filtering.cc", | 31 "study_filtering.cc", |
| 32 "study_filtering.h", | 32 "study_filtering.h", |
| 33 "variations_associated_data.cc", | 33 "variations_associated_data.cc", |
| 34 "variations_associated_data.h", | 34 "variations_associated_data.h", |
| 35 "variations_experiment_util.cc", |
| 36 "variations_experiment_util.h", |
| 35 "variations_seed_processor.cc", | 37 "variations_seed_processor.cc", |
| 36 "variations_seed_processor.h", | 38 "variations_seed_processor.h", |
| 37 "variations_seed_simulator.cc", | 39 "variations_seed_simulator.cc", |
| 38 "variations_seed_simulator.h", | 40 "variations_seed_simulator.h", |
| 39 "variations_url_constants.cc", | 41 "variations_url_constants.cc", |
| 40 "variations_url_constants.h", | 42 "variations_url_constants.h", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 deps = [ | 45 deps = [ |
| 44 "proto", | 46 "proto", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 80 |
| 79 deps = [ | 81 deps = [ |
| 80 ":variations", | 82 ":variations", |
| 81 "net", | 83 "net", |
| 82 "proto", | 84 "proto", |
| 83 "//base:prefs_test_support", | 85 "//base:prefs_test_support", |
| 84 "//base/test:test_support", | 86 "//base/test:test_support", |
| 85 "//testing/gtest", | 87 "//testing/gtest", |
| 86 ] | 88 ] |
| 87 } | 89 } |
| OLD | NEW |