| 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", | |
| 19 "display_converter.h", | |
| 20 "display_list.cc", | 18 "display_list.cc", |
| 21 "display_list.h", | 19 "display_list.h", |
| 22 "input_method_mus.cc", | 20 "input_method_mus.cc", |
| 23 "input_method_mus.h", | 21 "input_method_mus.h", |
| 24 "mus_export.h", | 22 "mus_export.h", |
| 25 "native_widget_mus.cc", | 23 "native_widget_mus.cc", |
| 26 "native_widget_mus.h", | 24 "native_widget_mus.h", |
| 27 "platform_window_mus.cc", | 25 "platform_window_mus.cc", |
| 28 "platform_window_mus.h", | 26 "platform_window_mus.h", |
| 29 "screen_mus.cc", | 27 "screen_mus.cc", |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 } | 301 } |
| 304 | 302 |
| 305 group("for_component") { | 303 group("for_component") { |
| 306 public_deps = [ | 304 public_deps = [ |
| 307 ":mus", | 305 ":mus", |
| 308 ] | 306 ] |
| 309 deps = [ | 307 deps = [ |
| 310 "//mojo/gles2", | 308 "//mojo/gles2", |
| 311 ] | 309 ] |
| 312 } | 310 } |
| OLD | NEW |