Chromium Code Reviews| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 | 132 |
| 133 configs += [ "//build/config:precompiled_headers" ] | 133 configs += [ "//build/config:precompiled_headers" ] |
| 134 | 134 |
| 135 # TODO(sky): add more files. | 135 # TODO(sky): add more files. |
| 136 sources = [ | 136 sources = [ |
| 137 "../run_all_unittests.cc", | 137 "../run_all_unittests.cc", |
| 138 "../run_all_unittests.h", | 138 "../run_all_unittests.h", |
| 139 "../test/native_widget_factory_mus.cc", | 139 "../test/native_widget_factory_mus.cc", |
| 140 "../view_targeter_unittest.cc", | 140 "../view_targeter_unittest.cc", |
| 141 "../widget/native_widget_unittest.cc", | 141 "../widget/native_widget_unittest.cc", |
| 142 "../widget/widget_interactive_uitest.cc", | |
|
sky
2016/05/13 19:27:52
This needs to be in its own test harness. The reas
| |
| 142 "../widget/widget_unittest.cc", | 143 "../widget/widget_unittest.cc", |
| 143 "native_widget_mus_unittest.cc", | 144 "native_widget_mus_unittest.cc", |
| 144 "platform_test_helper_mus.cc", | 145 "platform_test_helper_mus.cc", |
| 145 "platform_window_mus_unittest.cc", | 146 "platform_window_mus_unittest.cc", |
| 146 "run_all_unittests_mus.cc", | 147 "run_all_unittests_mus.cc", |
| 147 "screen_mus_unittest.cc", | 148 "screen_mus_unittest.cc", |
| 148 "window_manager_connection_unittest.cc", | 149 "window_manager_connection_unittest.cc", |
| 149 ] | 150 ] |
| 150 | 151 |
| 151 deps = [ | 152 deps = [ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 232 } | 233 } |
| 233 | 234 |
| 234 group("for_component") { | 235 group("for_component") { |
| 235 public_deps = [ | 236 public_deps = [ |
| 236 ":mus", | 237 ":mus", |
| 237 ] | 238 ] |
| 238 deps = [ | 239 deps = [ |
| 239 "//mojo/gles2", | 240 "//mojo/gles2", |
| 240 ] | 241 ] |
| 241 } | 242 } |
| OLD | NEW |