| 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 "input_method_mandoline.cc", | |
| 11 "input_method_mandoline.h", | |
| 12 "native_widget_view_manager.cc", | |
| 13 "native_widget_view_manager.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 public_deps = [ | |
| 23 "//components/mus/public/cpp", | |
| 24 ] | |
| 25 deps = [ | |
| 26 "//base", | |
| 27 "//base:i18n", | |
| 28 "//base/third_party/dynamic_annotations", | |
| 29 "//cc", | |
| 30 "//cc/surfaces", | |
| 31 "//components/mus/gles2:lib", | |
| 32 "//components/mus/public/cpp", | |
| 33 "//components/mus/public/interfaces", | |
| 34 "//components/resource_provider/public/cpp", | |
| 35 "//components/resource_provider/public/interfaces", | |
| 36 "//skia", | |
| 37 "//mojo/application/public/cpp", | |
| 38 "//mojo/application/public/interfaces", | |
| 39 "//mojo/converters/geometry", | |
| 40 "//mojo/converters/ime", | |
| 41 "//mojo/converters/input_events", | |
| 42 "//mojo/converters/surfaces", | |
| 43 "//third_party/mojo/src/mojo/public/c/gles2", | |
| 44 "//third_party/icu", | |
| 45 "//ui/aura", | |
| 46 "//ui/compositor", | |
| 47 "//ui/events", | |
| 48 "//ui/events:events_base", | |
| 49 "//ui/gl", | |
| 50 "//ui/mojo/ime:interfaces_cpp_sources", | |
| 51 "//ui/mojo/init", | |
| 52 "//ui/views", | |
| 53 "//ui/wm", | |
| 54 ] | |
| 55 | |
| 56 data_deps = [ | |
| 57 "//components/resource_provider", | |
| 58 ] | |
| 59 | |
| 60 if (is_linux && !is_android) { | |
| 61 deps += [ "//components/font_service/public/cpp" ] | |
| 62 data_deps += [ "//components/font_service" ] | |
| 63 } | |
| 64 } | |
| OLD | NEW |