File: BUILD.gn

package info (click to toggle)
chromium 131.0.6778.204-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,525,896 kB
  • sloc: cpp: 33,478,049; ansic: 7,047,153; javascript: 3,856,427; python: 1,440,824; asm: 821,132; xml: 707,353; pascal: 179,575; sh: 105,031; objc: 91,109; perl: 86,801; cs: 43,811; sql: 42,172; makefile: 28,712; fortran: 24,137; php: 21,557; ruby: 17,806; tcl: 10,142; yacc: 8,614; lisp: 3,056; lex: 1,327; ada: 727; awk: 329; jsp: 267; sed: 36
file content (21 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# The main target used to aggregate all unit tests for Python-based Mojo tools.
# This is used to generate a complete isolate which can be pushed to bots to run
# the tests.
group("mojo_python_unittests") {
  data = [
    "run_all_python_unittests.py",
    "//testing/scripts/run_isolated_script_test.py",
  ]
  deps = [
    "//mojo/public/tools/bindings:tests",
    "//mojo/public/tools/mojom:tests",
    "//mojo/public/tools/mojom/mojom:tests",
  ]
  data_deps = [
    "//testing:test_scripts_shared",
  ]
}