Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/mojo_application.gni") | |
| 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | |
| 7 | |
| 8 executable("test_runner") { | |
|
sky
2015/09/03 23:01:02
Add this as a DEP to /mandoline/BUILD.gn's tests d
sadrul
2015/09/04 03:48:57
Done.
| |
| 9 output_name = "layout_test_runner" | |
| 10 sources = [ | |
| 11 "launcher.cc", | |
| 12 "launcher.h", | |
| 13 "main.cc", | |
| 14 ] | |
| 15 | |
| 16 deps = [ | |
| 17 "//base", | |
| 18 "//build/config/sanitizers:deps", | |
| 19 "//mojo/common", | |
| 20 "//mojo/environment:chromium", | |
| 21 "//mojo/runner:lib", | |
| 22 ] | |
| 23 | |
| 24 data_deps = [ | |
| 25 ":web_view_test_runner", | |
| 26 "//components/html_viewer", | |
| 27 "//components/pdf_viewer", | |
| 28 ] | |
| 29 } | |
| 30 | |
| 31 mojo_native_application("web_view_test_runner") { | |
| 32 sources = [ | |
| 33 "test_runner_main.cc", | |
| 34 "test_runner_application_delegate.cc", | |
| 35 "test_runner_application_delegate.h", | |
| 36 ] | |
| 37 | |
| 38 deps = [ | |
| 39 "//base", | |
| 40 "//components/html_viewer/public/interfaces", | |
| 41 "//components/view_manager/public/cpp", | |
| 42 "//components/web_view/public/cpp", | |
| 43 "//components/web_view/public/interfaces", | |
| 44 "//components/web_view/test_runner/public/interfaces", | |
| 45 "//mojo/application/public/cpp", | |
| 46 "//mojo/common", | |
| 47 "//net", | |
| 48 "//ui/gfx/geometry", | |
| 49 "//url", | |
| 50 ] | |
| 51 } | |
| OLD | NEW |