Update mojo from the Chromium repository. The commit from which this was taken is: 9c138d992bfc1fb8f4f7bcf58d00bf19c219e4e2 "Updating trunk VERSION from 4523.0 to 4524.0" The update-mojo.sh script was used for this update. Bug: https://bugs.libcamera.org/show_bug.cgi?id=34 Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18 lines
632 B
Text
18 lines
632 B
Text
# Copyright 2020 The Chromium Authors. All rights reserved.
|
|
# 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/mojom/mojom:tests" ]
|
|
data_deps = [
|
|
"//testing:test_scripts_shared",
|
|
"//third_party/catapult/third_party/typ/",
|
|
]
|
|
}
|