| 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 | 6 |
| 7 static_library("dom4_keycode_converter") { | 7 static_library("dom4_keycode_converter") { |
| 8 sources = [ | 8 sources = [ |
| 9 "keycodes/dom4/keycode_converter.cc", | 9 "keycodes/dom4/keycode_converter.cc", |
| 10 "keycodes/dom4/keycode_converter.h", | 10 "keycodes/dom4/keycode_converter.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ] | 118 ] |
| 119 deps = [ | 119 deps = [ |
| 120 ":dom4_keycode_converter", | 120 ":dom4_keycode_converter", |
| 121 ":gesture_detection", | 121 ":gesture_detection", |
| 122 "//base/third_party/dynamic_annotations", | 122 "//base/third_party/dynamic_annotations", |
| 123 "//skia", | 123 "//skia", |
| 124 "//ui/gfx", | 124 "//ui/gfx", |
| 125 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
| 126 ] | 126 ] |
| 127 | 127 |
| 128 forward_dependent_configs_from = [ ":events_base" ] | |
| 129 | |
| 130 if (use_x11) { | 128 if (use_x11) { |
| 131 sources += [ "x/events_x.cc" ] | 129 sources += [ "x/events_x.cc" ] |
| 132 configs += [ | 130 configs += [ |
| 133 "//build/config/linux:glib", | 131 "//build/config/linux:glib", |
| 134 "//build/config/linux:x11", | 132 "//build/config/linux:x11", |
| 135 ] | 133 ] |
| 136 deps += [ "//ui/gfx/x" ] | 134 deps += [ "//ui/gfx/x" ] |
| 137 } | 135 } |
| 138 | 136 |
| 139 if (!is_chromeos && is_linux) { | 137 if (!is_chromeos && is_linux) { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 317 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
| 320 ] | 318 ] |
| 321 } | 319 } |
| 322 | 320 |
| 323 if (use_aura) { | 321 if (use_aura) { |
| 324 sources += [ | 322 sources += [ |
| 325 "gestures/gesture_provider_aura_unittest.cc", | 323 "gestures/gesture_provider_aura_unittest.cc", |
| 326 ] | 324 ] |
| 327 } | 325 } |
| 328 } | 326 } |
| OLD | NEW |