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 = [ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 if (is_android || is_ios) { | 112 if (is_android || is_ios) { |
113 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] | 113 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] |
114 } | 114 } |
115 | 115 |
116 deps = [ | 116 deps = [ |
117 ":variations", | 117 ":variations", |
118 "net", | 118 "net", |
119 "proto", | 119 "proto", |
120 "//base/test:test_support", | 120 "//base/test:test_support", |
121 "//components/prefs:test_support", | 121 "//components/prefs:test_support", |
| 122 "//components/variations/field_trial_config:unit_tests", |
122 "//testing/gtest", | 123 "//testing/gtest", |
123 "//third_party/zlib:compression_utils", | 124 "//third_party/zlib:compression_utils", |
124 ] | 125 ] |
125 } | 126 } |
OLD | NEW |