Chromium Code Reviews| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 forward_dependent_configs_from = [ "//ui/gfx" ] | 54 forward_dependent_configs_from = [ "//ui/gfx" ] |
| 55 | 55 |
| 56 if (use_x11) { | 56 if (use_x11) { |
| 57 configs += [ "//build/config/linux:x11" ] | 57 configs += [ "//build/config/linux:x11" ] |
| 58 | 58 |
| 59 sources += [ | 59 sources += [ |
| 60 "keycodes/keyboard_code_conversion_x.cc", | 60 "keycodes/keyboard_code_conversion_x.cc", |
| 61 "keycodes/keyboard_code_conversion_x.h", | 61 "keycodes/keyboard_code_conversion_x.h", |
| 62 "keycodes/keysym_to_unicode_x.cc", | |
| 63 "keycodes/keysym_to_unicode_x.h", | |
|
Wez
2014/08/07 23:37:11
Since this conversion isn't anything to do with VK
Yuki
2014/08/08 14:22:08
Done.
| |
| 62 "x/device_data_manager_x11.cc", | 64 "x/device_data_manager_x11.cc", |
| 63 "x/device_data_manager_x11.h", | 65 "x/device_data_manager_x11.h", |
| 64 "x/device_list_cache_x.cc", | 66 "x/device_list_cache_x.cc", |
| 65 "x/device_list_cache_x.h", | 67 "x/device_list_cache_x.h", |
| 66 "x/touch_factory_x11.cc", | 68 "x/touch_factory_x11.cc", |
| 67 "x/touch_factory_x11.h", | 69 "x/touch_factory_x11.h", |
| 68 ] | 70 ] |
| 69 } | 71 } |
| 70 } | 72 } |
| 71 | 73 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 ":events_base", | 298 ":events_base", |
| 297 ":gesture_detection", | 299 ":gesture_detection", |
| 298 ":test_support", | 300 ":test_support", |
| 299 "//base", | 301 "//base", |
| 300 "//base/test:run_all_unittests", | 302 "//base/test:run_all_unittests", |
| 301 "//skia", | 303 "//skia", |
| 302 "//testing/gtest", | 304 "//testing/gtest", |
| 303 "//ui/gfx:test_support", | 305 "//ui/gfx:test_support", |
| 304 ] | 306 ] |
| 305 } | 307 } |
| OLD | NEW |