| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 component("mus") { | 11 component("mus") { |
| 12 output_name = "ui_views_mus_lib" | 12 output_name = "ui_views_mus_lib" |
| 13 | 13 |
| 14 sources = [ | 14 sources = [ |
| 15 "aura_init.cc", | 15 "aura_init.cc", |
| 16 "aura_init.h", | 16 "aura_init.h", |
| 17 "display_converter.cc", | 17 "display_converter.cc", |
| 18 "display_converter.h", | 18 "display_converter.h", |
| 19 "input_method_mus.cc", | 19 "input_method_mus.cc", |
| 20 "input_method_mus.h", | 20 "input_method_mus.h", |
| 21 "mus_export.h", | 21 "mus_export.h", |
| 22 "native_widget_mus.cc", | 22 "native_widget_mus.cc", |
| 23 "native_widget_mus.h", | 23 "native_widget_mus.h", |
| 24 "platform_window_mus.cc", | 24 "platform_window_mus.cc", |
| 25 "platform_window_mus.h", | 25 "platform_window_mus.h", |
| 26 "screen_mus.cc", | 26 "screen_mus.cc", |
| 27 "screen_mus.h", | 27 "screen_mus.h", |
| 28 "screen_mus_delegate.h", |
| 28 "surface_binding.cc", | 29 "surface_binding.cc", |
| 29 "surface_binding.h", | 30 "surface_binding.h", |
| 30 "surface_context_factory.cc", | 31 "surface_context_factory.cc", |
| 31 "surface_context_factory.h", | 32 "surface_context_factory.h", |
| 32 "window_manager_connection.cc", | 33 "window_manager_connection.cc", |
| 33 "window_manager_connection.h", | 34 "window_manager_connection.h", |
| 34 "window_manager_constants_converters.cc", | 35 "window_manager_constants_converters.cc", |
| 35 "window_manager_constants_converters.h", | 36 "window_manager_constants_converters.h", |
| 36 "window_manager_frame_values.cc", | 37 "window_manager_frame_values.cc", |
| 37 "window_manager_frame_values.h", | 38 "window_manager_frame_values.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 } | 215 } |
| 215 | 216 |
| 216 group("for_component") { | 217 group("for_component") { |
| 217 public_deps = [ | 218 public_deps = [ |
| 218 ":mus", | 219 ":mus", |
| 219 ] | 220 ] |
| 220 deps = [ | 221 deps = [ |
| 221 "//mojo/gles2", | 222 "//mojo/gles2", |
| 222 ] | 223 ] |
| 223 } | 224 } |
| OLD | NEW |