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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "//components/ntp_snippets/remote/proto", | 142 "//components/ntp_snippets/remote/proto", |
143 "//components/offline_pages", | 143 "//components/offline_pages", |
144 "//components/offline_pages:test_support", | 144 "//components/offline_pages:test_support", |
145 "//components/sessions", | 145 "//components/sessions", |
146 "//components/sessions:test_support", | 146 "//components/sessions:test_support", |
147 "//components/signin/core/browser:test_support", | 147 "//components/signin/core/browser:test_support", |
148 "//components/signin/core/common", | 148 "//components/signin/core/common", |
149 "//components/strings", | 149 "//components/strings", |
150 "//components/sync:test_support_driver", | 150 "//components/sync:test_support_driver", |
151 "//components/sync_sessions", | 151 "//components/sync_sessions", |
152 "//components/variations", | 152 "//components/variations:test_support", |
153 "//net:test_support", | 153 "//net:test_support", |
154 "//testing/gtest", | 154 "//testing/gtest", |
155 "//third_party/icu/", | 155 "//third_party/icu/", |
156 "//ui/gfx:test_support", | 156 "//ui/gfx:test_support", |
157 ] | 157 ] |
158 } | 158 } |
159 | 159 |
160 source_set("test_support") { | 160 source_set("test_support") { |
161 testonly = true | 161 testonly = true |
162 sources = [ | 162 sources = [ |
163 "mock_content_suggestions_provider_observer.cc", | 163 "mock_content_suggestions_provider_observer.cc", |
164 "mock_content_suggestions_provider_observer.h", | 164 "mock_content_suggestions_provider_observer.h", |
165 "offline_pages/offline_pages_test_utils.cc", | 165 "offline_pages/offline_pages_test_utils.cc", |
166 "offline_pages/offline_pages_test_utils.h", | 166 "offline_pages/offline_pages_test_utils.h", |
167 ] | 167 ] |
168 | 168 |
169 deps = [ | 169 deps = [ |
170 ":ntp_snippets", | 170 ":ntp_snippets", |
171 "//base", | 171 "//base", |
172 "//components/offline_pages", | 172 "//components/offline_pages", |
173 "//components/offline_pages:test_support", | 173 "//components/offline_pages:test_support", |
174 "//testing/gmock", | 174 "//testing/gmock", |
175 ] | 175 ] |
176 } | 176 } |
OLD | NEW |