Chromium Code Reviews| Index: ui/events/ozone/BUILD.gn |
| diff --git a/ui/events/ozone/BUILD.gn b/ui/events/ozone/BUILD.gn |
| index d8976e1139f4a4a8747327bd453e877d62e6444f..d264efb950f4bfc909d309dde2fee8fae9baad4d 100644 |
| --- a/ui/events/ozone/BUILD.gn |
| +++ b/ui/events/ozone/BUILD.gn |
| @@ -79,6 +79,7 @@ component("events_ozone_evdev") { |
| deps = [ |
| ":events_ozone", |
| + ":events_ozone_layout", |
| "//base", |
| "//ui/events/devices", |
| "//ui/events/platform", |
| @@ -109,3 +110,24 @@ component("events_ozone_evdev") { |
| ] |
| } |
| } |
| + |
| +component("events_ozone_layout") { |
| + sources = [ |
| + "layout/events_ozone_layout_export.h", |
| + "layout/keyboard_layout_engine.h", |
| + "layout/keyboard_layout_engine_manager.cc", |
| + "layout/keyboard_layout_engine_manager.h", |
| + "layout/no/no_keyboard_layout_engine.cc", |
| + "layout/no/no_keyboard_layout_engine.h", |
| + "layout/stub/stub_keyboard_layout_engine.cc", |
| + "layout/stub/stub_keyboard_layout_engine.h", |
| + ] |
| + |
| + defines = [ |
| + "EVENTS_OZONE_LAYOTU_IMPLEMENTATION", |
|
Wez
2014/12/02 05:45:08
typo?
kpschoedel
2014/12/02 16:45:45
Done.
|
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + ] |
| +} |