| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "window_manager_connection_unittest.cc", | 179 "window_manager_connection_unittest.cc", |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 deps = [ | 182 deps = [ |
| 183 ":mus", | 183 ":mus", |
| 184 ":test_support", | 184 ":test_support", |
| 185 "//base", | 185 "//base", |
| 186 "//base:i18n", | 186 "//base:i18n", |
| 187 "//cc", | 187 "//cc", |
| 188 "//components/mus/public/cpp", | 188 "//components/mus/public/cpp", |
| 189 "//components/mus/public/cpp/tests:unittest_support", |
| 189 "//components/mus/public/interfaces", | 190 "//components/mus/public/interfaces", |
| 190 "//services/shell/background:main", # Provides main(). | 191 "//services/shell/background:main", # Provides main(). |
| 191 "//skia", | 192 "//skia", |
| 192 "//testing/gtest", | 193 "//testing/gtest", |
| 193 "//third_party/icu", | 194 "//third_party/icu", |
| 194 "//ui/accessibility", | 195 "//ui/accessibility", |
| 195 "//ui/aura", | 196 "//ui/aura", |
| 196 "//ui/aura:test_support", | 197 "//ui/aura:test_support", |
| 197 "//ui/base", | 198 "//ui/base", |
| 198 "//ui/base:test_support", | 199 "//ui/base:test_support", |
| (...skipping 104 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 |