| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "../views_test_suite.cc", | 137 "../views_test_suite.cc", |
| 138 "../views_test_suite.h", | 138 "../views_test_suite.h", |
| 139 "views_mus_test_suite.cc", | 139 "views_mus_test_suite.cc", |
| 140 "views_mus_test_suite.h", | 140 "views_mus_test_suite.h", |
| 141 ] | 141 ] |
| 142 | 142 |
| 143 deps = [ | 143 deps = [ |
| 144 ":mus", | 144 ":mus", |
| 145 "//base", | 145 "//base", |
| 146 "//base/test:test_support", | 146 "//base/test:test_support", |
| 147 "//components/mus/common:mus_common", |
| 147 "//services/shell/background:lib", | 148 "//services/shell/background:lib", |
| 148 "//services/shell/background/tests:test_support", | 149 "//services/shell/background/tests:test_support", |
| 149 "//services/shell/public/cpp:sources", | 150 "//services/shell/public/cpp:sources", |
| 150 "//testing/gtest", | 151 "//testing/gtest", |
| 151 "//ui/aura", | 152 "//ui/aura", |
| 152 "//ui/gl:test_support", | 153 "//ui/gl:test_support", |
| 153 "//ui/resources", | 154 "//ui/resources", |
| 154 "//ui/resources:ui_test_pak", | 155 "//ui/resources:ui_test_pak", |
| 155 "//ui/views", | 156 "//ui/views", |
| 156 "//ui/views:test_support_internal", | 157 "//ui/views:test_support_internal", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 } | 304 } |
| 304 | 305 |
| 305 group("for_component") { | 306 group("for_component") { |
| 306 public_deps = [ | 307 public_deps = [ |
| 307 ":mus", | 308 ":mus", |
| 308 ] | 309 ] |
| 309 deps = [ | 310 deps = [ |
| 310 "//mojo/gles2", | 311 "//mojo/gles2", |
| 311 ] | 312 ] |
| 312 } | 313 } |
| OLD | NEW |