OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/ui.gni") |
| 6 import("//extensions/features/features.gni") |
| 7 |
| 8 assert(enable_extensions) |
| 9 |
| 10 source_set("views") { |
| 11 sources = [ |
| 12 "app_window_frame_view.cc", |
| 13 "app_window_frame_view.h", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 "//cc/paint", |
| 18 "//chrome/app/theme:theme_resources", |
| 19 "//extensions/browser/app_window", |
| 20 "//extensions/common", |
| 21 "//skia", |
| 22 "//ui/gfx", |
| 23 "//ui/strings", |
| 24 "//ui/views", |
| 25 ] |
| 26 } |
OLD | NEW |