| 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("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 configs += [ "//build/config:precompiled_headers" ] | 142 configs += [ "//build/config:precompiled_headers" ] |
| 143 | 143 |
| 144 # TODO(sky): add more files. | 144 # TODO(sky): add more files. |
| 145 sources = [ | 145 sources = [ |
| 146 "../run_all_unittests.cc", | 146 "../run_all_unittests.cc", |
| 147 "../run_all_unittests.h", | 147 "../run_all_unittests.h", |
| 148 "../test/native_widget_factory_mus.cc", | 148 "../test/native_widget_factory_mus.cc", |
| 149 "../view_targeter_unittest.cc", | 149 "../view_targeter_unittest.cc", |
| 150 "../widget/native_widget_unittest.cc", | 150 "../widget/native_widget_unittest.cc", |
| 151 "../widget/widget_unittest.cc", | 151 "../widget/widget_unittest.cc", |
| 152 "native_widget_mus_unittest.cc", |
| 152 "platform_test_helper_mus.cc", | 153 "platform_test_helper_mus.cc", |
| 153 "run_all_unittests_mus.cc", | 154 "run_all_unittests_mus.cc", |
| 154 ] | 155 ] |
| 155 | 156 |
| 156 deps = [ | 157 deps = [ |
| 157 ":mus", | 158 ":mus", |
| 158 "//base", | 159 "//base", |
| 159 "//base:i18n", | 160 "//base:i18n", |
| 160 "//base/test:test_support", | 161 "//base/test:test_support", |
| 161 "//cc", | 162 "//cc", |
| 163 "//components/mus/public/cpp", |
| 164 "//components/mus/public/interfaces", |
| 162 "//mojo/shell/background:lib", | 165 "//mojo/shell/background:lib", |
| 163 "//mojo/shell/background:main", | 166 "//mojo/shell/background:main", |
| 164 "//mojo/shell/background/tests:test_support", | 167 "//mojo/shell/background/tests:test_support", |
| 165 "//mojo/shell/public/cpp:sources", | 168 "//mojo/shell/public/cpp:sources", |
| 166 "//mojo/shell/runner/host:lib", | 169 "//mojo/shell/runner/host:lib", |
| 167 "//skia", | 170 "//skia", |
| 168 "//testing/gtest", | 171 "//testing/gtest", |
| 169 "//third_party/icu", | 172 "//third_party/icu", |
| 170 "//ui/accessibility", | 173 "//ui/accessibility", |
| 171 "//ui/aura", | 174 "//ui/aura", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 } | 230 } |
| 228 | 231 |
| 229 group("for_component") { | 232 group("for_component") { |
| 230 public_deps = [ | 233 public_deps = [ |
| 231 ":mus", | 234 ":mus", |
| 232 ] | 235 ] |
| 233 deps = [ | 236 deps = [ |
| 234 "//mojo/gles2", | 237 "//mojo/gles2", |
| 235 ] | 238 ] |
| 236 } | 239 } |
| OLD | NEW |