1# Copyright 2020 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# The main target used to aggregate all unit tests for Python-based Mojo tools.
6# This is used to generate a complete isolate which can be pushed to bots to run
7# the tests.
8group("mojo_python_unittests") {
9  data = [
10    "run_all_python_unittests.py",
11    "//testing/scripts/common.py",
12    "//testing/scripts/run_isolated_script_test.py",
13    "//testing/test_env.py",
14    "//testing/xvfb.py",
15  ]
16  deps = [ "//mojo/public/tools/mojom/mojom:tests" ]
17  data_deps = [ "//third_party/catapult/third_party/typ/" ]
18}
19