| 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("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| 11 | 11 |
| 12 component("mus") { | 12 component("mus") { |
| 13 output_name = "ui_views_mus_lib" | 13 output_name = "ui_views_mus_lib" |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "aura_init.cc", | 16 "aura_init.cc", |
| 17 "aura_init.h", | 17 "aura_init.h", |
| 18 "display_converter.cc", | 18 "display_converter.cc", |
| 19 "display_converter.h", | 19 "display_converter.h", |
| 20 "display_list.cc", | 20 "display_list.cc", |
| 21 "display_list.h", | 21 "display_list.h", |
| 22 "input_method_mus.cc", | 22 "input_method_mus.cc", |
| 23 "input_method_mus.h", | 23 "input_method_mus.h", |
| 24 "mus_export.h", | 24 "mus_export.h", |
| 25 "native_widget_mus.cc", | 25 "native_widget_mus.cc", |
| 26 "native_widget_mus.h", | 26 "native_widget_mus.h", |
| 27 "platform_window_mus.cc", |
| 28 "platform_window_mus.h", |
| 27 "screen_mus.cc", | 29 "screen_mus.cc", |
| 28 "screen_mus.h", | 30 "screen_mus.h", |
| 29 "screen_mus_delegate.h", | 31 "screen_mus_delegate.h", |
| 30 "surface_binding.cc", | 32 "surface_binding.cc", |
| 31 "surface_binding.h", | 33 "surface_binding.h", |
| 32 "surface_context_factory.cc", | 34 "surface_context_factory.cc", |
| 33 "surface_context_factory.h", | 35 "surface_context_factory.h", |
| 34 "window_manager_connection.cc", | 36 "window_manager_connection.cc", |
| 35 "window_manager_connection.h", | 37 "window_manager_connection.h", |
| 36 "window_manager_constants_converters.cc", | 38 "window_manager_constants_converters.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//ui/events", | 77 "//ui/events", |
| 76 "//ui/events:events_base", | 78 "//ui/events:events_base", |
| 77 "//ui/events/devices", | 79 "//ui/events/devices", |
| 78 "//ui/gfx", | 80 "//ui/gfx", |
| 79 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
| 80 "//ui/gl", | 82 "//ui/gl", |
| 81 "//ui/mojo/display", | 83 "//ui/mojo/display", |
| 82 "//ui/mojo/ime:interfaces_cpp_sources", | 84 "//ui/mojo/ime:interfaces_cpp_sources", |
| 83 "//ui/native_theme", | 85 "//ui/native_theme", |
| 84 "//ui/platform_window", | 86 "//ui/platform_window", |
| 85 "//ui/platform_window/stub", | |
| 86 "//ui/views", | 87 "//ui/views", |
| 87 "//ui/wm", | 88 "//ui/wm", |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 if (is_linux && !is_android) { | 91 if (is_linux && !is_android) { |
| 91 deps += [ "//components/font_service/public/cpp" ] | 92 deps += [ "//components/font_service/public/cpp" ] |
| 92 data_deps = [ | 93 data_deps = [ |
| 93 "//components/font_service", | 94 "//components/font_service", |
| 94 ] | 95 ] |
| 95 } | 96 } |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 } | 303 } |
| 303 | 304 |
| 304 group("for_component") { | 305 group("for_component") { |
| 305 public_deps = [ | 306 public_deps = [ |
| 306 ":mus", | 307 ":mus", |
| 307 ] | 308 ] |
| 308 deps = [ | 309 deps = [ |
| 309 "//mojo/gles2", | 310 "//mojo/gles2", |
| 310 ] | 311 ] |
| 311 } | 312 } |
| OLD | NEW |