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 26 matching lines...) Expand all Loading... |
37 "variations_experiment_util.cc", | 37 "variations_experiment_util.cc", |
38 "variations_experiment_util.h", | 38 "variations_experiment_util.h", |
39 "variations_request_scheduler.cc", | 39 "variations_request_scheduler.cc", |
40 "variations_request_scheduler.h", | 40 "variations_request_scheduler.h", |
41 "variations_seed_processor.cc", | 41 "variations_seed_processor.cc", |
42 "variations_seed_processor.h", | 42 "variations_seed_processor.h", |
43 "variations_seed_simulator.cc", | 43 "variations_seed_simulator.cc", |
44 "variations_seed_simulator.h", | 44 "variations_seed_simulator.h", |
45 "variations_seed_store.cc", | 45 "variations_seed_store.cc", |
46 "variations_seed_store.h", | 46 "variations_seed_store.h", |
| 47 "variations_switches.cc", |
| 48 "variations_switches.h", |
47 "variations_url_constants.cc", | 49 "variations_url_constants.cc", |
48 "variations_url_constants.h", | 50 "variations_url_constants.h", |
49 "variations_util.cc", | 51 "variations_util.cc", |
50 "variations_util.h", | 52 "variations_util.h", |
51 ] | 53 ] |
52 | 54 |
53 if (is_android || is_ios) { | 55 if (is_android || is_ios) { |
54 sources += [ | 56 sources += [ |
55 "variations_request_scheduler_mobile.cc", | 57 "variations_request_scheduler_mobile.cc", |
56 "variations_request_scheduler_mobile.h", | 58 "variations_request_scheduler_mobile.h", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 deps = [ | 109 deps = [ |
108 ":variations", | 110 ":variations", |
109 "net", | 111 "net", |
110 "proto", | 112 "proto", |
111 "//base:prefs_test_support", | 113 "//base:prefs_test_support", |
112 "//base/test:test_support", | 114 "//base/test:test_support", |
113 "//components/compression", | 115 "//components/compression", |
114 "//testing/gtest", | 116 "//testing/gtest", |
115 ] | 117 ] |
116 } | 118 } |
OLD | NEW |