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 # GYP version: mojo/mojo.gyp:mojo_aura_support |
| 6 source_set("aura") { |
| 7 sources = [ |
| 8 "aura_init.cc", |
| 9 "aura_init.h", |
| 10 "native_widget_view_manager.cc", |
| 11 "native_widget_view_manager.h", |
| 12 "screen_mojo.cc", |
| 13 "screen_mojo.h", |
| 14 "surface_binding.cc", |
| 15 "surface_binding.h", |
| 16 "surface_context_factory.cc", |
| 17 "surface_context_factory.h", |
| 18 "window_tree_host_mojo.cc", |
| 19 "window_tree_host_mojo.h", |
| 20 ] |
| 21 |
| 22 if (is_linux) { |
| 23 sources += [ |
| 24 "input_method_mojo_linux.cc", |
| 25 "input_method_mojo_linux.h", |
| 26 ] |
| 27 } |
| 28 |
| 29 public_deps = [ |
| 30 "//components/view_manager/public/cpp", |
| 31 ] |
| 32 deps = [ |
| 33 "//base", |
| 34 "//base:i18n", |
| 35 "//base/third_party/dynamic_annotations", |
| 36 "//cc", |
| 37 "//cc/surfaces", |
| 38 "//components/gpu/public/interfaces", |
| 39 "//components/native_viewport/public/interfaces", |
| 40 "//components/surfaces/public/interfaces", |
| 41 "//components/view_manager/public/cpp", |
| 42 "//skia", |
| 43 "//mojo/cc", |
| 44 "//mojo/converters/geometry", |
| 45 "//mojo/converters/surfaces", |
| 46 "//third_party/mojo/src/mojo/public/c/gles2", |
| 47 "//third_party/mojo/src/mojo/public/cpp/application", |
| 48 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
| 49 "//third_party/icu", |
| 50 "//ui/aura", |
| 51 "//ui/compositor", |
| 52 "//ui/events", |
| 53 "//ui/events:events_base", |
| 54 "//ui/gl", |
| 55 ] |
| 56 } |
OLD | NEW |