| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//ui/events/xkb.gni") | 7 import("//ui/events/xkb.gni") |
| 8 | 8 |
| 9 static_library("dom_keycode_converter") { | 9 static_library("dom_keycode_converter") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ":dom_keycode_converter", | 123 ":dom_keycode_converter", |
| 124 ":gesture_detection", | 124 ":gesture_detection", |
| 125 "//base/third_party/dynamic_annotations", | 125 "//base/third_party/dynamic_annotations", |
| 126 "//skia", | 126 "//skia", |
| 127 "//ui/gfx", | 127 "//ui/gfx", |
| 128 "//ui/gfx/geometry", | 128 "//ui/gfx/geometry", |
| 129 ] | 129 ] |
| 130 | 130 |
| 131 if (use_x11) { | 131 if (use_x11) { |
| 132 sources += [ "x/events_x.cc" ] | 132 sources += [ "x/events_x.cc" ] |
| 133 configs += [ | 133 configs += [ "//build/config/linux:x11" ] |
| 134 "//build/config/linux:glib", | |
| 135 "//build/config/linux:x11", | |
| 136 ] | |
| 137 deps += [ | 134 deps += [ |
| 138 "//ui/events/devices", | 135 "//ui/events/devices", |
| 139 "//ui/gfx/x", | 136 "//ui/gfx/x", |
| 140 ] | 137 ] |
| 141 } | 138 } |
| 142 | 139 |
| 143 if (use_ozone) { | 140 if (use_ozone) { |
| 144 sources += [ "ozone/events_ozone.cc" ] | 141 sources += [ "ozone/events_ozone.cc" ] |
| 145 deps += [ "//ui/events/ozone:events_ozone_layout" ] | 142 deps += [ "//ui/events/ozone:events_ozone_layout" ] |
| 146 } | 143 } |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 if (is_nacl) { | 331 if (is_nacl) { |
| 335 source_set("latency_info") { | 332 source_set("latency_info") { |
| 336 sources = [ | 333 sources = [ |
| 337 "ipc/latency_info_param_traits.cc", | 334 "ipc/latency_info_param_traits.cc", |
| 338 "ipc/latency_info_param_traits.h", | 335 "ipc/latency_info_param_traits.h", |
| 339 "latency_info.cc", | 336 "latency_info.cc", |
| 340 "latency_info.h", | 337 "latency_info.h", |
| 341 ] | 338 ] |
| 342 } | 339 } |
| 343 } | 340 } |
| OLD | NEW |