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

Unified 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, 1 month 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 | « content/browser/browser_main_loop.cc ('k') | headless/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/BUILD.gn
diff --git a/headless/BUILD.gn b/headless/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..e053908348a289e31ddaf97ee5225ca96f9131c7
--- /dev/null
+++ b/headless/BUILD.gn
@@ -0,0 +1,79 @@
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+group("headless") {
+ testonly = true
+
+ deps = [
+ "//headless:headless_lib",
+ "//headless:headless_shell",
+ ]
+}
+
+executable("headless_shell") {
+ testonly = true
+
+ sources = [
+ "app/headless_shell.cc",
+ ]
+
+ deps = [
+ "//headless:headless_lib",
+ "//skia",
+ ]
+}
+
+static_library("headless_lib") {
+ testonly = true
+
+ sources = [
+ "lib/browser/headless_browser_context.cc",
+ "lib/browser/headless_browser_context.h",
+ "lib/browser/headless_browser_main_parts.cc",
+ "lib/browser/headless_browser_main_parts.h",
+ "lib/browser/headless_content_browser_client.cc",
+ "lib/browser/headless_content_browser_client.h",
+ "lib/browser/headless_devtools.cc",
+ "lib/browser/headless_devtools.h",
+ "lib/browser/headless_network_delegate.cc",
+ "lib/browser/headless_network_delegate.h",
+ "lib/browser/headless_url_request_context_getter.cc",
+ "lib/browser/headless_url_request_context_getter.h",
+ "lib/renderer/headless_content_renderer_client.cc",
+ "lib/renderer/headless_content_renderer_client.h",
+ "lib/utility/headless_content_utility_client.cc",
+ "lib/utility/headless_content_utility_client.h",
+ "lib/headless_browser_impl.cc",
+ "lib/headless_browser_impl.h",
+ "lib/headless_shell_main_delegate.cc",
+ "lib/headless_shell_main_delegate.h",
+ "lib/headless_content_client.h",
+ "lib/headless_content_client.cc",
+ "lib/web_contents_impl.cc",
+ "lib/web_contents_impl.h",
+ "lib/web_document.cc",
+ "lib/web_element.cc",
+ "lib/web_frame_impl.cc",
+ "lib/web_frame_impl.h",
+ "lib/web_node.cc",
+ "public/headless_browser.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//components/devtools_http_handler",
+ "//content/public/browser",
+ "//content/public/common",
+ "//content/public/renderer",
+ "//content/public/utility",
+ "//net",
+ "//skia",
+ "//third_party/WebKit/public:blink",
+ "//url",
+ "//ui/base",
+ "//ui/aura",
+ "//ui/aura:test_support",
+ "//ui/compositor",
+ "//cc"
+ ]
+}
« 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