summaryrefslogtreecommitdiffstats
path: root/ui/ozone/platform/egltest/BUILD.gn
blob: dacb8edc3c60086a7fa333170cf926be6571ac9a (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
58
59
60
61
62
63
64
65
66
67
68
# 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.

import("//tools/generate_library_loader/generate_library_loader.gni")
import("//ui/ozone/ozone.gni")

source_set("egltest") {
  sources = [
    "client_native_pixmap_factory_egltest.cc",
    "client_native_pixmap_factory_egltest.h",
    "ozone_platform_egltest.cc",
    "ozone_platform_egltest.h",
  ]

  deps = [
    ":eglplatform_shim",
    "//base",
    "//ui/events/devices",
    "//ui/events/ozone:events_ozone_evdev",
    "//ui/events/ozone:events_ozone_layout",
    "//ui/events/platform",
    "//ui/gfx",
  ]
}

generate_library_loader("eglplatform_shim") {
  name = "LibeglplatformShimLoader"
  output_h = "libeglplatform_shim.h"
  output_cc = "libeglplatform_shim_loader.cc"
  header = "\"ui/ozone/platform/egltest/eglplatform_shim.h\""

  functions = [
    "ShimQueryString",
    "ShimInitialize",
    "ShimTerminate",
    "ShimCreateWindow",
    "ShimQueryWindow",
    "ShimDestroyWindow",
    "ShimGetNativeDisplay",
    "ShimGetNativeWindow",
    "ShimReleaseNativeWindow",
  ]
}

# TODO(spang): eglplatform_shim_x11 should become a loadable_module once
# support lands: http://crbug.com/380327. Until then, it is not valid on
# platforms other than Linux.

# GYP version: "ui/ozone/platform/egltest/egltest.gypi:eglplatform_shim_x11"
if (is_linux && ozone_platform_ozonex) {
  shared_library("eglplatform_shim_x11") {
    output_name = "libeglplatform_shim"

    output_extension = "so.1"

    sources = [
      "eglplatform_shim.h",
      "eglplatform_shim_xeleven.cc",
    ]

    configs += [ "//build/config/linux:x11" ]

    deps = [
      "//build/config/sanitizers:deps",
    ]
  }
}