Chromium Code Reviews| Index: components/web_view/test_runner/BUILD.gn |
| diff --git a/components/web_view/test_runner/BUILD.gn b/components/web_view/test_runner/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e21f05b68b45547942fb79186059572c4b233527 |
| --- /dev/null |
| +++ b/components/web_view/test_runner/BUILD.gn |
| @@ -0,0 +1,51 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//mojo/public/mojo_application.gni") |
| +import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| + |
| +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.
|
| + output_name = "layout_test_runner" |
| + sources = [ |
| + "launcher.cc", |
| + "launcher.h", |
| + "main.cc", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//build/config/sanitizers:deps", |
| + "//mojo/common", |
| + "//mojo/environment:chromium", |
| + "//mojo/runner:lib", |
| + ] |
| + |
| + data_deps = [ |
| + ":web_view_test_runner", |
| + "//components/html_viewer", |
| + "//components/pdf_viewer", |
| + ] |
| +} |
| + |
| +mojo_native_application("web_view_test_runner") { |
| + sources = [ |
| + "test_runner_main.cc", |
| + "test_runner_application_delegate.cc", |
| + "test_runner_application_delegate.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/html_viewer/public/interfaces", |
| + "//components/view_manager/public/cpp", |
| + "//components/web_view/public/cpp", |
| + "//components/web_view/public/interfaces", |
| + "//components/web_view/test_runner/public/interfaces", |
| + "//mojo/application/public/cpp", |
| + "//mojo/common", |
| + "//net", |
| + "//ui/gfx/geometry", |
| + "//url", |
| + ] |
| +} |