| 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", |
| 21 "display_list.h", |
| 20 "input_method_mus.cc", | 22 "input_method_mus.cc", |
| 21 "input_method_mus.h", | 23 "input_method_mus.h", |
| 22 "mus_export.h", | 24 "mus_export.h", |
| 23 "native_widget_mus.cc", | 25 "native_widget_mus.cc", |
| 24 "native_widget_mus.h", | 26 "native_widget_mus.h", |
| 25 "platform_window_mus.cc", | 27 "platform_window_mus.cc", |
| 26 "platform_window_mus.h", | 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", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 test("views_mus_unittests") { | 164 test("views_mus_unittests") { |
| 163 testonly = true | 165 testonly = true |
| 164 | 166 |
| 165 configs += [ "//build/config:precompiled_headers" ] | 167 configs += [ "//build/config:precompiled_headers" ] |
| 166 | 168 |
| 167 # TODO(sky): add more files. | 169 # TODO(sky): add more files. |
| 168 sources = [ | 170 sources = [ |
| 169 "../view_targeter_unittest.cc", | 171 "../view_targeter_unittest.cc", |
| 170 "../widget/native_widget_unittest.cc", | 172 "../widget/native_widget_unittest.cc", |
| 171 "../widget/widget_unittest.cc", | 173 "../widget/widget_unittest.cc", |
| 174 "display_list_unittest.cc", |
| 172 "native_widget_mus_unittest.cc", | 175 "native_widget_mus_unittest.cc", |
| 173 "platform_window_mus_unittest.cc", | 176 "platform_window_mus_unittest.cc", |
| 174 "run_all_unittests_mus.cc", | 177 "run_all_unittests_mus.cc", |
| 175 "screen_mus_unittest.cc", | 178 "screen_mus_unittest.cc", |
| 176 "window_manager_connection_unittest.cc", | 179 "window_manager_connection_unittest.cc", |
| 177 ] | 180 ] |
| 178 | 181 |
| 179 deps = [ | 182 deps = [ |
| 180 ":mus", | 183 ":mus", |
| 181 ":test_support", | 184 ":test_support", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 } | 303 } |
| 301 | 304 |
| 302 group("for_component") { | 305 group("for_component") { |
| 303 public_deps = [ | 306 public_deps = [ |
| 304 ":mus", | 307 ":mus", |
| 305 ] | 308 ] |
| 306 deps = [ | 309 deps = [ |
| 307 "//mojo/gles2", | 310 "//mojo/gles2", |
| 308 ] | 311 ] |
| 309 } | 312 } |
| OLD | NEW |