| OLD | NEW | 
|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") | 
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") | 
| 7 | 7 | 
| 8 mojo_native_application("input_manager") { | 8 mojo_native_application("input_manager") { | 
| 9   output_name = "input_manager_service" | 9   output_name = "input_manager_service" | 
| 10 | 10 | 
| 11   sources = [ | 11   sources = [ | 
| 12     "main.cc", | 12     "main.cc", | 
| 13   ] | 13   ] | 
| 14 | 14 | 
| 15   deps = [ | 15   deps = [ | 
| 16     ":lib", | 16     ":lib", | 
| 17     "//mojo/application", | 17     "//mojo/application", | 
| 18   ] | 18   ] | 
| 19 } | 19 } | 
| 20 | 20 | 
|  | 21 # Library that allows the service code to be included directly into the | 
|  | 22 # embedding shell. Used by https://manganese.googlesource.com/. | 
| 21 source_set("lib") { | 23 source_set("lib") { | 
| 22   sources = [ | 24   sources = [ | 
| 23     "input_associate.cc", | 25     "input_associate.cc", | 
| 24     "input_associate.h", | 26     "input_associate.h", | 
| 25     "input_connection_impl.cc", | 27     "input_connection_impl.cc", | 
| 26     "input_connection_impl.h", | 28     "input_connection_impl.h", | 
| 27     "input_dispatcher_impl.cc", | 29     "input_dispatcher_impl.cc", | 
| 28     "input_dispatcher_impl.h", | 30     "input_dispatcher_impl.h", | 
| 29     "input_manager_app.cc", | 31     "input_manager_app.cc", | 
| 30     "input_manager_app.h", | 32     "input_manager_app.h", | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 41     "//mojo/services/geometry/cpp", | 43     "//mojo/services/geometry/cpp", | 
| 42     "//mojo/services/geometry/interfaces", | 44     "//mojo/services/geometry/interfaces", | 
| 43     "//mojo/services/gfx/composition/cpp", | 45     "//mojo/services/gfx/composition/cpp", | 
| 44     "//mojo/services/gfx/composition/interfaces", | 46     "//mojo/services/gfx/composition/interfaces", | 
| 45     "//mojo/services/ui/input/interfaces", | 47     "//mojo/services/ui/input/interfaces", | 
| 46     "//mojo/services/ui/views/cpp", | 48     "//mojo/services/ui/views/cpp", | 
| 47     "//mojo/services/ui/views/interfaces", | 49     "//mojo/services/ui/views/interfaces", | 
| 48     "//mojo/ui/associates", | 50     "//mojo/ui/associates", | 
| 49   ] | 51   ] | 
| 50 } | 52 } | 
| OLD | NEW | 
|---|