Index: apps/ui/views/BUILD.gn |
diff --git a/apps/ui/views/BUILD.gn b/apps/ui/views/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd7d9076500e97015631244ce35cb5538de2380b |
--- /dev/null |
+++ b/apps/ui/views/BUILD.gn |
@@ -0,0 +1,26 @@ |
+# Copyright 2017 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. |
+ |
+import("//build/config/ui.gni") |
+import("//extensions/features/features.gni") |
+ |
+assert(enable_extensions) |
michaelpg
2017/05/22 23:15:41
Is this the part that caused problems when compili
hugoh_UTC2
2017/05/23 11:57:27
Yes, this assert (and some others of the same kind
|
+ |
+source_set("views") { |
+ sources = [ |
+ "app_window_frame_view.cc", |
+ "app_window_frame_view.h", |
+ ] |
+ |
+ deps = [ |
+ "//cc/paint", |
+ "//chrome/app/theme:theme_resources", |
+ "//extensions/browser/app_window", |
+ "//extensions/common", |
+ "//skia", |
+ "//ui/gfx", |
+ "//ui/strings", |
+ "//ui/views", |
+ ] |
+} |