Index: extensions/browser/app_window/BUILD.gn |
diff --git a/extensions/browser/app_window/BUILD.gn b/extensions/browser/app_window/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d7bac3879d231d4970061df921e4e4f6ce6adaf7 |
--- /dev/null |
+++ b/extensions/browser/app_window/BUILD.gn |
@@ -0,0 +1,28 @@ |
+# 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. |
+source_set("app_window") { |
+ sources = [ |
+ "app_delegate.h", |
+ "app_web_contents_helper.cc", |
+ "app_web_contents_helper.h", |
+ "app_window.cc", |
+ "app_window.h", |
+ "app_window_client.cc", |
+ "app_window_client.h", |
+ "app_window_contents.cc", |
+ "app_window_contents.h", |
+ "app_window_geometry_cache.cc", |
+ "app_window_geometry_cache.h", |
+ "app_window_registry.cc", |
+ "app_window_registry.h", |
+ "native_app_window.h", |
+ "size_constraints.cc", |
+ "size_constraints.h", |
+ ] |
+ |
+ deps = [ |
+ "//content/public/browser", |
+ "//skia", |
+ ] |
+} |