Index: headless/app/BUILD.gn |
diff --git a/headless/app/BUILD.gn b/headless/app/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a66d82efd05345eb5472d4eb0dafbe2939f9bbeb |
--- /dev/null |
+++ b/headless/app/BUILD.gn |
@@ -0,0 +1,20 @@ |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import("//build/config/features.gni") |
+ |
+executable("headless_shell") { |
+ testonly = true |
+ |
+ sources = [ |
+ "headless_browser_main.h", |
+ "headless_browser_main.cc", |
+ "headless_shell_main_delegate.cc", |
+ "headless_shell_main_delegate.h", |
+ "headless_shell_main.cc", |
+ ] |
+ |
+ deps = [ |
+ "//content/shell:content_shell_lib" |
+ ] |
+} |