| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 group("tests") { | 10 group("tests") { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ":test_support", | 45 ":test_support", |
| 46 "//base", | 46 "//base", |
| 47 "//base/test:test_support", | 47 "//base/test:test_support", |
| 48 "//mojo/edk/system", | 48 "//mojo/edk/system", |
| 49 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
| 50 "//mojo/shell", | 50 "//mojo/shell", |
| 51 "//mojo/shell/background:lib", | 51 "//mojo/shell/background:lib", |
| 52 "//mojo/shell/background:main", | 52 "//mojo/shell/background:main", |
| 53 "//mojo/shell/background/tests:unittests", | 53 "//mojo/shell/background/tests:unittests", |
| 54 "//mojo/shell/public/cpp", | 54 "//mojo/shell/public/cpp", |
| 55 "//mojo/shell/tests/connect", |
| 55 "//mojo/util:filename_util", | 56 "//mojo/util:filename_util", |
| 56 "//testing/gtest", | 57 "//testing/gtest", |
| 57 "//url", | 58 "//url", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| 60 | 61 |
| 61 mojom("interfaces") { | 62 mojom("interfaces") { |
| 62 sources = [ | 63 sources = [ |
| 63 "capability_filter_unittest.mojom", | 64 "capability_filter_unittest.mojom", |
| 64 "test.mojom", | 65 "test.mojom", |
| 65 ] | 66 ] |
| 66 } | 67 } |
| 67 | 68 |
| 68 mojo_native_application("apptests") { | 69 mojo_native_application("apptests") { |
| 69 output_name = "mojo_shell_apptests" | 70 output_name = "mojo_shell_apptests" |
| 70 testonly = true | 71 testonly = true |
| 71 | 72 |
| 72 deps = [ | 73 deps = [ |
| 73 "//mojo/shell/tests/application_manager", | 74 "//mojo/shell/tests/application_manager", |
| 74 ] | 75 ] |
| 75 | |
| 76 data_deps = [ | |
| 77 "//mojo/shell/tests/connect", | |
| 78 ] | |
| 79 } | 76 } |
| OLD | NEW |