| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("test") { | 8 group("embedder_tester") { |
| 9 testonly = true | 9 testonly = true |
| 10 deps = [ | 10 deps = [ |
| 11 ":dart_finalizer_unittests", | 11 ":dart_finalizer_unittests", |
| 12 ":dart_to_cpp_unittests", | 12 ":dart_to_cpp_unittests", |
| 13 ":dart_unittests", | 13 ":dart_unittests", |
| 14 ":dart_validation_unittests", | 14 ":dart_validation_unittests", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("dart_controller_for_test") { | 18 source_set("dart_controller_for_test") { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 test("dart_validation_unittests") { | 94 test("dart_validation_unittests") { |
| 95 sources = [ | 95 sources = [ |
| 96 "validation_unittest.cc", | 96 "validation_unittest.cc", |
| 97 ] | 97 ] |
| 98 deps = [ | 98 deps = [ |
| 99 ":dart_test", | 99 ":dart_test", |
| 100 ":dart_test_deps", | 100 ":dart_test_deps", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| OLD | NEW |