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

Side by Side Diff: headless/BUILD.gn

Issue 1430673002: Headless demo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better javascript Created 5 years 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 | « content/browser/browser_main_loop.cc ('k') | headless/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 # Use of this source code is governed by a BSD-style license that can be
2 # found in the LICENSE file.
3
4 group("headless") {
5 testonly = true
6
7 deps = [
8 "//headless:headless_lib",
9 "//headless:headless_shell",
10 ]
11 }
12
13 executable("headless_shell") {
14 testonly = true
15
16 sources = [
17 "app/headless_shell.cc",
18 ]
19
20 deps = [
21 "//headless:headless_lib",
22 "//skia",
23 ]
24 }
25
26 static_library("headless_lib") {
27 testonly = true
28
29 sources = [
30 "lib/browser/headless_browser_context.cc",
31 "lib/browser/headless_browser_context.h",
32 "lib/browser/headless_browser_main_parts.cc",
33 "lib/browser/headless_browser_main_parts.h",
34 "lib/browser/headless_content_browser_client.cc",
35 "lib/browser/headless_content_browser_client.h",
36 "lib/browser/headless_devtools.cc",
37 "lib/browser/headless_devtools.h",
38 "lib/browser/headless_network_delegate.cc",
39 "lib/browser/headless_network_delegate.h",
40 "lib/browser/headless_url_request_context_getter.cc",
41 "lib/browser/headless_url_request_context_getter.h",
42 "lib/renderer/headless_content_renderer_client.cc",
43 "lib/renderer/headless_content_renderer_client.h",
44 "lib/utility/headless_content_utility_client.cc",
45 "lib/utility/headless_content_utility_client.h",
46 "lib/headless_browser_impl.cc",
47 "lib/headless_browser_impl.h",
48 "lib/headless_shell_main_delegate.cc",
49 "lib/headless_shell_main_delegate.h",
50 "lib/headless_content_client.h",
51 "lib/headless_content_client.cc",
52 "lib/web_contents_impl.cc",
53 "lib/web_contents_impl.h",
54 "lib/web_document.cc",
55 "lib/web_element.cc",
56 "lib/web_frame_impl.cc",
57 "lib/web_frame_impl.h",
58 "lib/web_node.cc",
59 "public/headless_browser.cc",
60 ]
61
62 deps = [
63 "//base",
64 "//components/devtools_http_handler",
65 "//content/public/browser",
66 "//content/public/common",
67 "//content/public/renderer",
68 "//content/public/utility",
69 "//net",
70 "//skia",
71 "//third_party/WebKit/public:blink",
72 "//url",
73 "//ui/base",
74 "//ui/aura",
75 "//ui/aura:test_support",
76 "//ui/compositor",
77 "//cc"
78 ]
79 }
OLDNEW
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | headless/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698