| Index: headless/BUILD.gn
|
| diff --git a/headless/BUILD.gn b/headless/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c1e0631b484f05ec4cd26f817ab6dae94963b140
|
| --- /dev/null
|
| +++ b/headless/BUILD.gn
|
| @@ -0,0 +1,26 @@
|
| +# 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") {
|
| + 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",
|
| + ]
|
| +}
|
|
|