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

Side by Side 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: . 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698