Chromium Code Reviews| Index: headless/BUILD.gn |
| diff --git a/headless/BUILD.gn b/headless/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..77f5d2d02e1194736443d85948439b99324aabbe |
| --- /dev/null |
| +++ b/headless/BUILD.gn |
| @@ -0,0 +1,23 @@ |
| +# Use of this source code is governed by a BSD-style license that can be |
|
Sami
2015/12/01 14:03:57
Missing the first line here?
altimin
2015/12/01 15:17:28
Done.
|
| +# 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", |
| + ] |
| +} |