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

Unified Diff: headless/BUILD.gn

Issue 1461693003: [headless] Initial skeleton of headless/public/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More minor fixes 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | headless/public/headless_browser.h » ('j') | headless/public/web_contents.h » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..f94e93d356014c2be137619d56271b8ba8540d8b
--- /dev/null
+++ b/headless/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+group("headless") {
+ deps = [
+ "//headless:headless_lib",
+ ]
+}
+
+static_library("headless_lib") {
+ sources = [
+ "public/headless_browser.cc",
+ "public/headless_browser.h",
+ "public/headless_export.h",
+ "public/network.h",
+ "public/web_contents.h",
+ "public/web_frame.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
« no previous file with comments | « no previous file | headless/public/headless_browser.h » ('j') | headless/public/web_contents.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698