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
5component("types") {
6  output_name = "display_types"
7  sources = [
8    "display_constants.h",
9    "display_mode.cc",
10    "display_mode.h",
11    "display_snapshot.cc",
12    "display_snapshot.h",
13    "display_types_export.h",
14    "native_display_delegate.h",
15    "native_display_observer.h",
16  ]
17
18  defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ]
19
20  deps = [
21    "//base",
22    "//ui/gfx/geometry",
23  ]
24}
25