| 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") { |
| 11 testonly = true | 11 testonly = true |
| 12 deps = [ | 12 deps = [ |
| 13 ":apptests", | 13 ":apptests", |
| 14 ":mojo_shell_unittests", | 14 ":mojo_shell_unittests", |
| 15 "//mojo/shell/tests/connect", |
| 15 ] | 16 ] |
| 16 } | 17 } |
| 17 | 18 |
| 18 source_set("test_support") { | 19 source_set("test_support") { |
| 19 testonly = true | 20 testonly = true |
| 20 sources = [ | 21 sources = [ |
| 21 "capability_filter_test.cc", | 22 "capability_filter_test.cc", |
| 22 "capability_filter_test.h", | 23 "capability_filter_test.h", |
| 23 ] | 24 ] |
| 24 | 25 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |