| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 deps = [ | 124 deps = [ |
| 125 "//mojo/gles2", | 125 "//mojo/gles2", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| 128 } | 128 } |
| 129 | 129 |
| 130 source_set("test_support") { | 130 source_set("test_support") { |
| 131 testonly = true | 131 testonly = true |
| 132 | 132 |
| 133 sources = [ | 133 sources = [ |
| 134 "../run_all_unittests.cc", | |
| 135 "../run_all_unittests.h", | |
| 136 "../test/native_widget_factory_mus.cc", | 134 "../test/native_widget_factory_mus.cc", |
| 135 "../views_test_suite.cc", |
| 136 "../views_test_suite.h", |
| 137 "views_mus_test_suite.cc", | 137 "views_mus_test_suite.cc", |
| 138 "views_mus_test_suite.h", | 138 "views_mus_test_suite.h", |
| 139 ] | 139 ] |
| 140 | 140 |
| 141 deps = [ | 141 deps = [ |
| 142 ":mus", | 142 ":mus", |
| 143 "//base", | 143 "//base", |
| 144 "//base/test:test_support", | 144 "//base/test:test_support", |
| 145 "//services/shell/background:lib", | 145 "//services/shell/background:lib", |
| 146 "//services/shell/background/tests:test_support", | 146 "//services/shell/background/tests:test_support", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 } | 300 } |
| 301 | 301 |
| 302 group("for_component") { | 302 group("for_component") { |
| 303 public_deps = [ | 303 public_deps = [ |
| 304 ":mus", | 304 ":mus", |
| 305 ] | 305 ] |
| 306 deps = [ | 306 deps = [ |
| 307 "//mojo/gles2", | 307 "//mojo/gles2", |
| 308 ] | 308 ] |
| 309 } | 309 } |
| OLD | NEW |