summaryrefslogtreecommitdiffstats
path: root/mandoline/ui/aura/BUILD.gn
blob: 97c00053f291444776ffc5bab245f8bef470f40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2014 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.

# GYP version: mojo/mojo.gyp:mojo_aura_support
source_set("aura") {
  sources = [
    "aura_init.cc",
    "aura_init.h",
    "input_method_mandoline.cc",
    "input_method_mandoline.h",
    "native_widget_view_manager.cc",
    "native_widget_view_manager.h",
    "surface_binding.cc",
    "surface_binding.h",
    "surface_context_factory.cc",
    "surface_context_factory.h",
    "window_tree_host_mojo.cc",
    "window_tree_host_mojo.h",
  ]

  public_deps = [
    "//components/view_manager/public/cpp",
  ]
  deps = [
    "//base",
    "//base:i18n",
    "//base/third_party/dynamic_annotations",
    "//cc",
    "//cc/surfaces",
    "//components/resource_provider/public/cpp",
    "//components/resource_provider/public/interfaces",
    "//components/view_manager/gles2:lib",
    "//components/view_manager/public/cpp",
    "//components/view_manager/public/interfaces",
    "//skia",
    "//mojo/application/public/cpp",
    "//mojo/application/public/interfaces",
    "//mojo/cc",
    "//mojo/converters/geometry",
    "//mojo/converters/input_events",
    "//mojo/converters/surfaces",
    "//third_party/mojo/src/mojo/public/c/gles2",
    "//third_party/icu",
    "//ui/aura",
    "//ui/compositor",
    "//ui/events",
    "//ui/events:events_base",
    "//ui/gl",
    "//ui/mojo/init",
    "//ui/views",
  ]

  if (is_linux && !is_android) {
    deps += [ "//components/font_service/public/cpp" ]
  }
}