Home
last modified time | relevance | path

Searched +full:- +full:- +full:all +full:- +full:targets (Results 1 – 25 of 1122) sorted by relevance

12345678910>>...45

/external/linux-kselftest/tools/testing/selftests/
DMakefile1 # SPDX-License-Identifier: GPL-2.0
2 TARGETS += alsa
3 TARGETS += arm64
4 TARGETS += bpf
5 TARGETS += breakpoints
6 TARGETS += capabilities
7 TARGETS += cgroup
8 TARGETS += clone3
9 TARGETS += core
10 TARGETS += cpufreq
[all …]
/external/grpc-grpc/tools/run_tests/
Dtask_runner.py8 # http://www.apache.org/licenses/LICENSE-2.0
30 _TARGETS += artifact_targets.targets()
31 _TARGETS += distribtest_targets.targets()
32 _TARGETS += package_targets.targets()
42 label_build_map['all'] = [t for t in _TARGETS] # to build all targets
57 argp = argparse.ArgumentParser(description='Runs build/test targets.')
59 '-b',
60 '--build',
63 default=['all'],
66 '-f',
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Dtask_runner.py8 # http://www.apache.org/licenses/LICENSE-2.0
30 _TARGETS += artifact_targets.targets()
31 _TARGETS += distribtest_targets.targets()
32 _TARGETS += package_targets.targets()
42 label_build_map['all'] = [t for t in _TARGETS] # to build all targets
57 argp = argparse.ArgumentParser(description='Runs build/test targets.')
58 argp.add_argument('-b',
59 '--build',
62 default=['all'],
64 argp.add_argument('-f',
[all …]
/external/webrtc/tools_webrtc/mb/docs/
Ddesign_spec.md1 # The MB (Meta-Build wrapper) design spec
7 MB is intended to address two major aspects of the GYP -> GN transition
10 1. "bot toggling" - make it so that we can easily flip a given bot
13 2. "bot configuration" - provide a single source of truth for all of
20 and a list of targets to build and returns which targets are affected by
36 * `mb gen -c linux_rel_bot //out/Release`
37 * `mb analyze -m tryserver.chromium.linux -b linux_rel /tmp/input.json /tmp/output.json`
72 [list of files] --type=executable --all --as=output` and filtering the
73 output to match the list of targets.
83 * In an ideal (un-resource-constrained) world, we would build and test
[all …]
Duser_guide.md1 # The MB (Meta-Build wrapper) user guide
7 `mb` is a simple python wrapper around the GYP and GN meta-build tools to
8 be used as part of the GYP->GN migration.
12 commits), and to consolidate the list of all of the various configurations
23 `mb analyze` is reponsible for determining what targets are affected by
27 mb analyze -c chromium_linux_rel //out/Release input.json output.json
30 Either the `-c/--config` flag or the `-m/--builder-group` and `-b/--builder`
33 The first positional argument must be a GN-style "source-absolute" path
41 * `test_targets`: an array of (ninja) build targets that needed to run the
44 * `additional_compile_targets`: an array of (ninja) build targets that
[all …]
/external/libcups/monitor/
DMakefile4 # Copyright 2007-2019 by Apple Inc.
12 TARGETS = bcp tbcp macro
18 # Make all targets...
21 all: $(TARGETS) target
25 # Make library targets...
39 # Clean all object files...
43 $(RM) $(OBJS) $(TARGETS)
51 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
55 # Install all targets...
58 install: all install-data install-headers install-libs install-exec
[all …]
/external/libvpx/build/make/
Diosbuild.sh3 ## Copyright (c) 2014 The WebM project authors. All Rights Reserved.
5 ## Use of this source code is governed by a BSD-style license
8 ## in the file PATENTS. All contributing project authors may
17 set -e
21 CONFIGURE_ARGS="--disable-docs
22 --disable-examples
23 --disable-libyuv
24 --disable-unit-tests"
31 LIPO=$(xcrun -sdk iphoneos${SDK} -find lipo)
33 ARM_TARGETS="arm64-darwin-gcc
[all …]
/external/pigweed/
DBUILD.gn7 # https://www.apache.org/licenses/LICENSE-2.0
34 # The default C++ optimization level for building upstream Pigweed targets.
39 # The C++ optimization levels for which to generate targets.
47 # List of application image GN targets specific to the Pigweed target.
53 # build steps for all parsed targets, not just desired dependencies.
61 # all supported levels to the selected levels, then removing all supported
64 pw_C_OPTIMIZATION_LEVELS + pw_toolchain_SUPPORTED_C_OPTIMIZATION_LEVELS -
73 # removing all instances of the selected levels from the supported levels list.
77 [ pw_DEFAULT_C_OPTIMIZATION_LEVEL ] -
84 # Enumerate all of the different targets that upstream Pigweed will build by
[all …]
/external/webrtc/android_tools/
Dgenerate_bp.py11 '-D_DEBUG',
12 '-Werror',
13 '-Xclang'
16 '-DHAVE_ARM64_CRC32C=0',
17 '-DUSE_AURA=1',
18 '-DUSE_GLIB=1',
19 '-DUSE_NSS_CERTS=1',
20 '-DUSE_UDEV',
21 '-DUSE_X11=1',
22 '-DWEBRTC_ANDROID_PLATFORM_BUILD=1',
[all …]
/external/cronet/build/docs/
Dwriting_gn_templates.md4 * Ninja: https://ninja-build.org/manual.html
10 List all files read (or executed) by an action as `inputs`.
11 * It is not enough to have inputs listed by dependent targets. They must be
12 listed directly by targets that use them, or added by a depfile.
13 * Non-system Python imports are inputs! For scripts that import such modules,
14 use [`action_with_pydeps`] to ensure all dependent Python files are captured
19 To understand *why* actions must list all inputs directly, you need to
20 understand ninja's "restat" directive, which is used for all GN `action()`s.
22 From https://ninja-build.org/manual.html:
24 > if present, causes Ninja to re-stat the command’s outputs after execution of
[all …]
/external/angle/build/docs/
Dwriting_gn_templates.md4 * Ninja: https://ninja-build.org/manual.html
10 List all files read (or executed) by an action as `inputs`.
11 * It is not enough to have inputs listed by dependent targets. They must be
12 listed directly by targets that use them, or added by a depfile.
13 * Non-system Python imports are inputs! For scripts that import such modules,
14 use [`action_with_pydeps`] to ensure all dependent Python files are captured
19 To understand *why* actions must list all inputs directly, you need to
20 understand ninja's "restat" directive, which is used for all GN `action()`s.
22 From https://ninja-build.org/manual.html:
24 > if present, causes Ninja to re-stat the command’s outputs after execution of
[all …]
/external/bazel-skylib/rules/
Danalysis_test.bzl1 # Copyright 2019 The Bazel Authors. All rights reserved.
7 # http://www.apache.org/licenses/LICENSE-2.0
15 """A test verifying other targets can be successfully analyzed as part of a `bazel test`"""
22 message = "All targets succeeded analysis",
27 attrs = {"targets": attr.label_list(mandatory = True)},
30 doc = """Test rule checking that other targets can be successfully analyzed.
32 This rule essentially verifies that all targets under `targets` would
33 generate no errors when analyzed with `bazel build [targets] --nobuild`.
34 Action success/failure for the targets and their transitive dependencies
39 NOTE: If the targets fail to analyze, instead of the analysis_test failing, the analysis_test
[all …]
/external/mbedtls/scripts/mbedtls_dev/
Dtest_data_generation.py10 # SPDX-License-Identifier: Apache-2.0
16 # http://www.apache.org/licenses/LICENSE-2.0
36 T = TypeVar('T') #pylint: disable=invalid-name
61 # pylint: disable=unused-argument
66 def arguments(self) -> List[str]:
77 def description(self) -> str:
96 def create_test_case(self) -> test_case.TestCase:
108 def generate_function_tests(cls) -> Iterator[test_case.TestCase]:
120 #pylint: disable=too-few-public-methods
124 to as file targets. These indicate where test cases will be written to for
[all …]
/external/libcups/berkeley/
DMakefile4 # Copyright 2007-2019 by Apple Inc.
5 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
13 TARGETS = lpc lpq lpr lprm macro
18 # Make all targets...
21 all: $(TARGETS) target
25 # Make library targets...
39 # Clean all object files...
43 $(RM) $(OBJS) $(TARGETS)
51 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
55 # Install all targets...
[all …]
/external/catch2/CMake/
DFindLcov.cmake1 # This file is part of CMake-codecov.
4 # 2015-2017 RWTH Aachen University, Federal Republic of Germany
8 # Written by Alexander Haase, alexander.haase@rwth-aachen.de
64 set(GENHTML_CPPFILT_FLAG "--demangle-cpp")
67 # enable no-external flag for lcov, if available.
70 execute_process(COMMAND ${GENINFO_BIN} --help OUTPUT_VARIABLE GENINFO_HELP)
73 set(FLAG "--no-external")
109 COMMAND ${LCOV_BIN} --quiet -a ${OUTFILE}.raw --output-file ${OUTFILE}
110 --base-directory ${PROJECT_SOURCE_DIR} ${LCOV_EXTRA_FLAGS}
111 COMMAND ${LCOV_BIN} --quiet -r ${OUTFILE} ${LCOV_REMOVE_PATTERNS}
[all …]
/external/zucchini/
DREADME.md17 expensive (e.g., ~15-20 min for Chrome, using 1 GB of RAM), but since patch
18 generation is a run-once step on the server-side when releasing "new" binaries,
23 constraints (e.g., time, RAM, disk space) is more stringent. Also, fault-
52 [location, location + 1, ..., location + length - 1].
55 All reference bodies in an image must not overlap, and often regions boundaries
60 targets. For example, in
77 * They simplify association from Targets to Labels.
90 **Pool of targets**: Collection of targets that is assumed to have some semantic
91 relationship. Each reference type belong to exactly one reference pool. Targets
98 - From bytecode to string index using 16 bits.
[all …]
Dtarget_pool.h1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
21 // Ordered container of distinct targets that have the same semantics, along
28 // Initializes the object with given sorted and unique |targets|.
29 explicit TargetPool(std::deque<offset_t>&& targets);
34 // Insert new targets from various sources. These invalidate all previous key
36 // - From a list of targets, useful for adding extra targets in Zucchini-gen:
37 void InsertTargets(const std::vector<offset_t>& targets);
38 // - From TargetSource, useful for adding extra targets in Zucchini-apply:
39 void InsertTargets(TargetSource* targets);
[all …]
/external/oss-fuzz/infra/cifuzz/
Daffected_fuzz_targets.py7 # http://www.apache.org/licenses/LICENSE-2.0
14 """Module for dealing with fuzz targets affected by the change-under-test
20 # pylint: disable=wrong-import-position,import-error
27 """Removes all non affected fuzz targets in the out directory.
33 repo_path: The location of the OSS-Fuzz repo in the docker image.
35 This function will not delete fuzz targets unless it knows that the fuzz
36 targets are unaffected. For example, this means that fuzz targets which don't
40 # Don't remove any fuzz targets if there is no difference from HEAD.
49 logging.error('No fuzz targets found in out dir.')
54 # Don't remove any fuzz targets unless we have data.
[all …]
/external/libcups/filter/
DMakefile4 # Copyright © 2007-2019 by Apple Inc.
5 # Copyright © 1997-2006 by Easy Software Products.
14 TARGETS = \ macro
29 # Make all targets...
32 all: $(TARGETS) target
36 # Make library targets...
50 # Clean all object files...
54 $(RM) $(OBJS) $(TARGETS)
62 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
66 # Install all targets...
[all …]
/external/zucchini/aosp/include/components/zucchini/
Dtarget_pool.h1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
21 // Ordered container of distinct targets that have the same semantics, along
28 // Initializes the object with given sorted and unique |targets|.
29 explicit TargetPool(std::deque<offset_t>&& targets);
34 // Insert new targets from various sources. These invalidate all previous key
36 // - From a list of targets, useful for adding extra targets in Zucchini-gen:
37 void InsertTargets(const std::vector<offset_t>& targets);
38 // - From TargetSource, useful for adding extra targets in Zucchini-apply:
39 void InsertTargets(TargetSource* targets);
[all …]
/external/openthread/third_party/nlbuild-autotools/repo/automake/post/rules/
Dcoverage.am2 # Copyright 2018 Google LLC. All Rights Reserved.
3 # Copyright 2015-2016 Nest Labs Inc. All Rights Reserved.
9 # http://www.apache.org/licenses/LICENSE-2.0
20 # This file is the automake footer for all code-coverage related
21 # targets and rules.
25 # at the top of the tree and all the prerequisites occur such
27 # invocations. The 'check-am' and '$(BUILT_SOURCES)' are the key
28 # automake-specific dependencies to ensure that happens.
30 # This defines the following make targets:
33 # Execute local and recursive coverage targets across the
[all …]
/external/libcups/notifier/
DMakefile4 # Copyright 2007-2019 by Apple Inc.
5 # Copyright 1997-2007 by Easy Software Products, all rights reserved.
14 TARGETS = $(NOTIFIERS) testnotify macro
19 # Make all targets...
22 all: $(TARGETS) target
26 # Make library targets...
40 # Clean all object files...
44 $(RM) $(OBJS) $(TARGETS) dbus.h
48 # Install all targets...
51 install: all install-data install-headers install-libs install-exec
[all …]
/external/cronet/build/android/docs/
Djava_toolchain.md12 * `java_library()`: Compiles `.java` -> `.jar`
20 All target names must end with "_java" so that the build system can distinguish
21 them from non-java targets (or [other variations](https://cs.chromium.org/chromium/src/build/config…
23 Most targets produce two separate `.jar` files:
24 * Device `.jar`: Used to produce `.dex.jar`, which is used on-device.
35 * They contain `.class` files with all private symbols and all method bodies
37 * Dependant targets use interface `.jar` files to skip having to be rebuilt
43 For non-prebuilt `.jar` files`: we use [//third_party/turbine] to create
47 of targets to happen concurrently with their dependencies. We also use Turbine
55 This step is the only step that does not apply to prebuilt targets.
[all …]
/external/angle/build/android/docs/
Djava_toolchain.md12 * `java_library()`: Compiles `.java` -> `.jar`
20 All target names must end with "_java" so that the build system can distinguish
21 them from non-java targets (or [other variations](https://cs.chromium.org/chromium/src/build/config…
23 Most targets produce two separate `.jar` files:
24 * Device `.jar`: Used to produce `.dex.jar`, which is used on-device.
35 * They contain `.class` files with all private symbols and all method bodies
37 * Dependant targets use interface `.jar` files to skip having to be rebuilt
43 For non-prebuilt `.jar` files`: we use [//third_party/turbine] to create
47 of targets to happen concurrently with their dependencies. We also use Turbine
55 This step is the only step that does not apply to prebuilt targets.
[all …]
/external/tensorflow/tensorflow/tools/pip_package/
Dcheck_load_py_test.py1 # Copyright 2017 The TensorFlow Authors. All Rights Reserved.
7 # http://www.apache.org/licenses/LICENSE-2.0
41 # Get all py_test target, note bazel query result will also include
44 targets = subprocess.check_output([
47 '//tensorflow/python/... - '
50 targets = e.output
51 targets = targets.decode("utf-8") if isinstance(targets, bytes) else targets
53 # Only keep py_test targets, and filter out targets with 'no_pip' tag.
55 for target in targets.split('\n'):
62 # Get all BUILD files for all valid targets.
[all …]

12345678910>>...45