| OLD | NEW |
| (Empty) |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/dart/rules.gni") | |
| 6 | |
| 7 dart_package("unittest") { | |
| 8 sources = [ | |
| 9 "unittest/compact_vm_config.dart", | |
| 10 "unittest/html_config.dart", | |
| 11 "unittest/html_enhanced_config.dart", | |
| 12 "unittest/html_individual_config.dart", | |
| 13 "unittest/unittest.dart", | |
| 14 "unittest/vm_config.dart", | |
| 15 "unittest/src/configuration.dart", | |
| 16 "unittest/src/expected_function.dart", | |
| 17 "unittest/src/group_context.dart", | |
| 18 "unittest/src/internal_test_case.dart", | |
| 19 "unittest/src/simple_configuration.dart", | |
| 20 "unittest/src/test_case.dart", | |
| 21 "unittest/src/test_environment.dart", | |
| 22 "unittest/src/utils.dart", | |
| 23 ] | |
| 24 deps = [ | |
| 25 "//third_party/dart-packages/matcher", | |
| 26 "//third_party/dart-packages/path", | |
| 27 "//third_party/dart-packages/stack_trace", | |
| 28 ] | |
| 29 } | |
| OLD | NEW |