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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Repack this here. | 10 # Repack this here. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 "ax_provider_apptest.cc", | 223 "ax_provider_apptest.cc", |
224 ] | 224 ] |
225 | 225 |
226 deps = [ | 226 deps = [ |
227 ":lib", | 227 ":lib", |
228 ":html_viewer", | 228 ":html_viewer", |
229 "//mojo/application:test_support", | 229 "//mojo/application:test_support", |
230 "//net:test_support", | 230 "//net:test_support", |
231 "//testing/gtest", | 231 "//testing/gtest", |
232 ] | 232 ] |
233 | |
234 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. | |
235 data_deps = [] | |
236 if (is_android) { | |
237 data_deps += [ "//mojo/android" ] | |
238 } | |
239 if (!is_component_build) { | |
240 data_deps += [ "//mojo/shell:mojo_shell" ] | |
241 } | |
242 } | 233 } |
OLD | NEW |