Add include.
[chromium-blink-merge.git] / ui / events / platform / x11 / BUILD.gn
blob3ed70b92c67d00f8bed576e3f948aed63e8f9967
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.
5 component("x11") {
6   output_name = "x11_events_platform"
8   sources = [
9     "x11_event_source.cc",
10     "x11_event_source.h",
11     "x11_event_source_glib.cc",
12     "x11_event_source_libevent.cc",
13   ]
15   defines = [ "EVENTS_IMPLEMENTATION" ]
17   configs += [ "//build/config/linux:x11" ]
19   public_deps = [
20     "//ui/events",
21     "//ui/events:events_base",
22     "//ui/events/platform",
23     "//ui/gfx/x",
24   ]
26   if (is_linux) {
27     sources -= [ "x11_event_source_libevent.cc" ]
29     configs += [ "//build/config/linux:glib" ]
30   } else {
31     sources -= [ "x11_event_source_glib.cc" ]
32   }