summaryrefslogtreecommitdiff
path: root/chromium/ui/display/types/BUILD.gn
blob: 5d42d9c73eddb1fdea2563ca7251f10299da30cc (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
# 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.

component("types") {
  output_name = "display_types"
  sources = [
    "display_configuration_params.cc",
    "display_configuration_params.h",
    "display_constants.h",
    "display_mode.cc",
    "display_mode.h",
    "display_snapshot.cc",
    "display_snapshot.h",
    "display_types_export.h",
    "fake_display_controller.h",
    "gamma_ramp_rgb_entry.h",
    "native_display_delegate.cc",
    "native_display_delegate.h",
    "native_display_observer.h",
  ]

  defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ]

  deps = [
    "//base",
    "//skia",
    "//ui/gfx:color_space",
    "//ui/gfx:memory_buffer",
    "//ui/gfx/geometry",
  ]
}