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

Unified Diff: headless/BUILD.gn

Issue 1674263002: headless: Initial headless embedder API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove provisional client API for now. Created 4 years, 10 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 | « BUILD.gn ('k') | headless/DEPS » ('j') | headless/app/headless_shell.cc » ('J')
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
index f94e93d356014c2be137619d56271b8ba8540d8b..957741245893c37b63ab0acf37feffc8bfcf1f8f 100644
--- a/headless/BUILD.gn
+++ b/headless/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//testing/test.gni")
+
group("headless") {
deps = [
"//headless:headless_lib",
@@ -10,15 +12,92 @@ group("headless") {
static_library("headless_lib") {
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_screen.cc",
+ "lib/browser/headless_screen.h",
+ "lib/browser/headless_url_request_context_getter.cc",
+ "lib/browser/headless_url_request_context_getter.h",
+ "lib/headless_browser_impl.cc",
+ "lib/headless_browser_impl.h",
+ "lib/headless_content_client.cc",
+ "lib/headless_content_client.h",
+ "lib/headless_content_main_delegate.cc",
+ "lib/headless_content_main_delegate.h",
+ "lib/headless_web_contents_impl.cc",
+ "lib/headless_web_contents_impl.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",
"public/headless_browser.cc",
"public/headless_browser.h",
"public/headless_export.h",
- "public/network.h",
- "public/web_contents.h",
- "public/web_frame.h",
+ "public/headless_network.h",
+ "public/headless_web_contents.h",
]
deps = [
"//base",
+ "//components/devtools_http_handler",
+ "//content/public/browser",
+ "//content/public/common",
+ "//content/public/renderer",
+ "//content/public/utility",
+ "//net",
+ "//ui/aura",
+ "//ui/base",
+ "//ui/compositor",
+ "//ui/ozone:ozone_base",
+ "//url",
+ ]
+}
+
+group("headless_tests") {
+ testonly = true
+
+ deps = [
+ ":headless_browsertests",
+ ]
+}
+
+test("headless_browsertests") {
+ sources = [
+ "lib/headless_browser_browsertest.cc",
+ "lib/headless_web_contents_browsertest.cc",
+ "test/headless_browser_test.cc",
+ "test/headless_browser_test.h",
+ "test/headless_test_launcher.cc",
+ ]
+
+ defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
+
+ deps = [
+ "//base",
+ "//content/test:browsertest_base",
+ "//content/test:test_support",
+ "//headless:headless_lib",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
+
+executable("headless_shell") {
+ testonly = true
+
+ sources = [
+ "app/headless_shell.cc",
+ ]
+
+ deps = [
+ "//headless:headless_lib",
]
}
« no previous file with comments | « BUILD.gn ('k') | headless/DEPS » ('j') | headless/app/headless_shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698