| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.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 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//base/test:test_config", | 167 "//base/test:test_config", |
| 168 "//cc:cc", | 168 "//cc:cc", |
| 169 "//components/mus/common:mus_common", | 169 "//components/mus/common:mus_common", |
| 170 "//components/mus/public/cpp", | 170 "//components/mus/public/cpp", |
| 171 "//components/mus/public/interfaces", | 171 "//components/mus/public/interfaces", |
| 172 "//components/mus/surfaces", | 172 "//components/mus/surfaces", |
| 173 "//mojo/converters/geometry", | 173 "//mojo/converters/geometry", |
| 174 "//mojo/converters/input_events", | 174 "//mojo/converters/input_events", |
| 175 "//mojo/converters/transform", | 175 "//mojo/converters/transform", |
| 176 "//mojo/edk/test:run_all_unittests", | 176 "//mojo/edk/test:run_all_unittests", |
| 177 "//mojo/environment:chromium", | |
| 178 "//mojo/gles2", | 177 "//mojo/gles2", |
| 179 "//mojo/platform_handle:for_shared_library", | 178 "//mojo/platform_handle:for_shared_library", |
| 180 "//mojo/public/cpp/bindings:bindings", | 179 "//mojo/public/cpp/bindings:bindings", |
| 181 "//mojo/shell/public/interfaces", | 180 "//mojo/shell/public/interfaces", |
| 182 "//testing/gtest", | 181 "//testing/gtest", |
| 183 "//ui/events", | 182 "//ui/events", |
| 184 "//ui/gfx", | 183 "//ui/gfx", |
| 185 "//ui/gfx:test_support", | 184 "//ui/gfx:test_support", |
| 186 "//ui/gfx/geometry", | 185 "//ui/gfx/geometry", |
| 187 "//ui/mojo/geometry:interfaces", | 186 "//ui/mojo/geometry:interfaces", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 224 |
| 226 if (use_x11) { | 225 if (use_x11) { |
| 227 deps += [ "//tools/xdisplaycheck" ] | 226 deps += [ "//tools/xdisplaycheck" ] |
| 228 } | 227 } |
| 229 } | 228 } |
| 230 | 229 |
| 231 mojo_application_manifest("manifest") { | 230 mojo_application_manifest("manifest") { |
| 232 application_name = "mus_apptests" | 231 application_name = "mus_apptests" |
| 233 source = "apptest_manifest.json" | 232 source = "apptest_manifest.json" |
| 234 } | 233 } |
| OLD | NEW |