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

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: 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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") {
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 "//url",
23 ]
24
25 data_deps = [
26 ":web_view_test_runner",
27 "//components/html_viewer",
28 "//tools/imagediff",
29 ]
30
31 if (is_linux) {
32 data_deps += [
33 "//breakpad:dump_syms",
34 "//breakpad:minidump_stackwalk",
35 ]
36 }
37 }
38
39 mojo_native_application("web_view_test_runner") {
40 sources = [
41 "test_runner_application_delegate.cc",
42 "test_runner_application_delegate.h",
43 "test_runner_main.cc",
44 ]
45
46 deps = [
47 "//base",
48 "//components/html_viewer/public/interfaces",
49 "//components/view_manager/public/cpp",
50 "//components/web_view/public/cpp",
51 "//components/web_view/public/interfaces",
52 "//components/web_view/test_runner/public/interfaces",
53 "//mojo/application/public/cpp",
54 "//mojo/common",
55 "//mojo/converters/geometry",
56 "//net",
57 "//ui/gfx/geometry",
58 "//url",
59 ]
60 }
OLDNEW
« 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