Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(842)

Unified Diff: components/web_view/test_runner/BUILD.gn

Issue 1308973005: html_viewer/web_view: An app for running layout-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot/merge Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/web_view/frame_connection.cc ('k') | components/web_view/test_runner/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..44b11bba4b1163ed0e32570f1fb3db215c60e155
--- /dev/null
+++ b/components/web_view/test_runner/BUILD.gn
@@ -0,0 +1,60 @@
+# 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") {
+ 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",
+ "//url",
+ ]
+
+ data_deps = [
+ ":web_view_test_runner",
+ "//components/html_viewer",
+ "//tools/imagediff",
+ ]
+
+ if (is_linux) {
+ data_deps += [
+ "//breakpad:dump_syms",
+ "//breakpad:minidump_stackwalk",
+ ]
+ }
+}
+
+mojo_native_application("web_view_test_runner") {
+ sources = [
+ "test_runner_application_delegate.cc",
+ "test_runner_application_delegate.h",
+ "test_runner_main.cc",
+ ]
+
+ 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",
+ "//mojo/converters/geometry",
+ "//net",
+ "//ui/gfx/geometry",
+ "//url",
+ ]
+}
« no previous file with comments | « components/web_view/frame_connection.cc ('k') | components/web_view/test_runner/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698