| 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", |
| 27 "screen_mus.h", |
| 26 "surface_binding.cc", | 28 "surface_binding.cc", |
| 27 "surface_binding.h", | 29 "surface_binding.h", |
| 28 "surface_context_factory.cc", | 30 "surface_context_factory.cc", |
| 29 "surface_context_factory.h", | 31 "surface_context_factory.h", |
| 30 "window_manager_connection.cc", | 32 "window_manager_connection.cc", |
| 31 "window_manager_connection.h", | 33 "window_manager_connection.h", |
| 32 "window_manager_constants_converters.cc", | 34 "window_manager_constants_converters.cc", |
| 33 "window_manager_constants_converters.h", | 35 "window_manager_constants_converters.h", |
| 34 "window_manager_frame_values.cc", | 36 "window_manager_frame_values.cc", |
| 35 "window_manager_frame_values.h", | 37 "window_manager_frame_values.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 } | 214 } |
| 213 | 215 |
| 214 group("for_component") { | 216 group("for_component") { |
| 215 public_deps = [ | 217 public_deps = [ |
| 216 ":mus", | 218 ":mus", |
| 217 ] | 219 ] |
| 218 deps = [ | 220 deps = [ |
| 219 "//mojo/gles2", | 221 "//mojo/gles2", |
| 220 ] | 222 ] |
| 221 } | 223 } |
| OLD | NEW |