| OLD | NEW |
| (Empty) |
| 1 # Copyright 2014 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 | |
| 7 assert(use_aura) | |
| 8 | |
| 9 # GYP version: mojo/mojo.gyp:mojo_views_support | |
| 10 static_library("views") { | |
| 11 sources = [ | |
| 12 "input_method_mojo_linux.cc", | |
| 13 "input_method_mojo_linux.h", | |
| 14 "native_widget_mojo.cc", | |
| 15 "native_widget_mojo.h", | |
| 16 "native_widget_view_manager.cc", | |
| 17 "native_widget_view_manager.h", | |
| 18 "views_init.cc", | |
| 19 "views_init.h", | |
| 20 ] | |
| 21 | |
| 22 public_deps = [ | |
| 23 "//mojo/aura", | |
| 24 "//mojo/converters/geometry", | |
| 25 "//mojo/services/view_manager/public/cpp", | |
| 26 "//skia", | |
| 27 "//ui/base", | |
| 28 "//ui/views", | |
| 29 ] | |
| 30 | |
| 31 deps = [ | |
| 32 "//base", | |
| 33 "//base:i18n", | |
| 34 "//base/third_party/dynamic_annotations", | |
| 35 "//skia", | |
| 36 "//third_party/icu", | |
| 37 "//ui/aura", | |
| 38 "//ui/base", | |
| 39 "//ui/gfx", | |
| 40 "//ui/native_theme:native_theme", | |
| 41 "//ui/wm", | |
| 42 ] | |
| 43 } | |
| OLD | NEW |