| 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") |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 167 |
| 168 configs += [ "//build/config:precompiled_headers" ] | 168 configs += [ "//build/config:precompiled_headers" ] |
| 169 | 169 |
| 170 # TODO(sky): add more files. | 170 # TODO(sky): add more files. |
| 171 sources = [ | 171 sources = [ |
| 172 "../view_targeter_unittest.cc", | 172 "../view_targeter_unittest.cc", |
| 173 "../widget/native_widget_unittest.cc", | 173 "../widget/native_widget_unittest.cc", |
| 174 "../widget/widget_unittest.cc", | 174 "../widget/widget_unittest.cc", |
| 175 "display_list_unittest.cc", | 175 "display_list_unittest.cc", |
| 176 "native_widget_mus_unittest.cc", | 176 "native_widget_mus_unittest.cc", |
| 177 "platform_window_mus_unittest.cc", | |
| 178 "run_all_unittests_mus.cc", | 177 "run_all_unittests_mus.cc", |
| 179 "screen_mus_unittest.cc", | 178 "screen_mus_unittest.cc", |
| 180 "window_manager_connection_unittest.cc", | 179 "window_manager_connection_unittest.cc", |
| 181 ] | 180 ] |
| 182 | 181 |
| 183 deps = [ | 182 deps = [ |
| 184 ":mus", | 183 ":mus", |
| 185 ":test_support", | 184 ":test_support", |
| 186 "//base", | 185 "//base", |
| 187 "//base:i18n", | 186 "//base:i18n", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 } | 303 } |
| 305 | 304 |
| 306 group("for_component") { | 305 group("for_component") { |
| 307 public_deps = [ | 306 public_deps = [ |
| 308 ":mus", | 307 ":mus", |
| 309 ] | 308 ] |
| 310 deps = [ | 309 deps = [ |
| 311 "//mojo/gles2", | 310 "//mojo/gles2", |
| 312 ] | 311 ] |
| 313 } | 312 } |
| OLD | NEW |