Index: headless/BUILD.gn |
diff --git a/headless/BUILD.gn b/headless/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6b06d4dbd7f4729212d7e36c22a5f70a9922b5a9 |
--- /dev/null |
+++ b/headless/BUILD.gn |
@@ -0,0 +1,28 @@ |
+# 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", |
+ ] |
+} |
+ |
+static_library("headless_lib") { |
+ testonly = true |
Sami
2015/11/19 14:08:34
The headless shell is testonly but the library its
altimin
2015/11/19 14:52:54
Done.
|
+ |
+ sources = [ |
+ "public/headless_browser.h", |
+ "public/web_contents.h", |
+ "public/web_document.h", |
+ "public/web_element.h", |
+ "public/web_frame.h", |
+ "public/web_node.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//third_party/WebKit/public:blink", |
+ ] |
+} |