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_service_client.h", | |
48 "variations_url_constants.cc", | 47 "variations_url_constants.cc", |
49 "variations_url_constants.h", | 48 "variations_url_constants.h", |
50 "variations_util.cc", | 49 "variations_util.cc", |
51 "variations_util.h", | 50 "variations_util.h", |
52 ] | 51 ] |
53 | 52 |
54 if (is_android || is_ios) { | 53 if (is_android || is_ios) { |
55 sources += [ | 54 sources += [ |
56 "variations_request_scheduler_mobile.cc", | 55 "variations_request_scheduler_mobile.cc", |
57 "variations_request_scheduler_mobile.h", | 56 "variations_request_scheduler_mobile.h", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 deps = [ | 107 deps = [ |
109 ":variations", | 108 ":variations", |
110 "net", | 109 "net", |
111 "proto", | 110 "proto", |
112 "//base:prefs_test_support", | 111 "//base:prefs_test_support", |
113 "//base/test:test_support", | 112 "//base/test:test_support", |
114 "//components/compression", | 113 "//components/compression", |
115 "//testing/gtest", | 114 "//testing/gtest", |
116 ] | 115 ] |
117 } | 116 } |
OLD | NEW |