Home
last modified time | relevance | path

Searched refs:executable (Results 1 – 25 of 50) sorted by relevance

12

/build/soong/python/tests/
Dpy-cmd_test.py51 assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py2-cmd')
53 assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py3-cmd')
54 assert_equal("sys.exec_prefix", sys.exec_prefix, sys.executable)
55 assert_equal("sys.prefix", sys.prefix, sys.executable)
62 assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, "internal"))
63 assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, "internal", "stdlib"))
68 …assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve…
69 …assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve…
70 …assert_equal("sys.path[4]", sys.path[4], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve…
71 …assert_equal("sys.path[5]", sys.path[5], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve…
[all …]
/build/bazel/rules/cc/
Dstripped_cc_common.bzl61 "CREATE_MINIDEBUGINFO": ctx.executable._create_minidebuginfo.path,
62 "XZ": ctx.executable._xz.path,
63 "CLANG_BIN": ctx.executable._ar.dirname,
67 ctx.executable._ar,
68 ctx.executable._create_minidebuginfo,
69 ctx.executable._objcopy,
70 ctx.executable._readelf,
71 ctx.executable._strip,
72 ctx.executable._strip_script,
73 ctx.executable._xz,
[all …]
Dgenerate_toc.bzl33 "CLANG_BIN": ctx.executable._readelf.dirname,
37 ctx.executable._readelf,
40 executable = ctx.executable._toc_script,
68 executable = True,
74 executable = True,
Dversioned_cc_common.bzl47 build_number_stamper = ctx.executable._build_number_stamper.path,
49 tools = [ctx.executable._build_number_stamper],
63 executable = True,
85 executable = out_file,
Dcc_stub_library.bzl53 executable = ctx.executable._ndkstubgen,
82 …ttr.label(default = "@make_injection//:host/linux-x86/bin/ndkstubgen", executable = True, cfg = "h…
83 …"_ndkstubgen": attr.label(default = "//build/soong/cc/ndkstubgen", executable = True, cfg = "host"…
Dcc_proto.bzl32 plugin_executable = ctx.executable.plugin
49 protoc = ctx.executable._protoc,
80 executable = True,
84 executable = True,
/build/bazel/rules/apex/
Dtoolchain.bzl55 "aapt2": attr.label(allow_single_file = True, cfg = "host", executable = True),
56 "avbtool": attr.label(cfg = "host", executable = True),
57 "apexer": attr.label(allow_single_file = True, cfg = "host", executable = True),
58 "mke2fs": attr.label(cfg = "host", executable = True),
59 "resize2fs": attr.label(cfg = "host", executable = True),
60 "e2fsdroid": attr.label(cfg = "host", executable = True),
61 "sefcontext_compile": attr.label(allow_single_file = True, cfg = "host", executable = True),
62 "conv_apex_manifest": attr.label(allow_single_file = True, cfg = "host", executable = True),
64 … "apex_compression_tool": attr.label(allow_single_file = True, cfg = "host", executable = True),
68 "soong_zip": attr.label(allow_single_file = True, cfg = "host", executable = True),
Dmainline_modules.bzl59 ctx.executable._aapt2,
81 executable = ctx.executable._aapt2,
94 ctx.executable._zip2zip,
118 executable = ctx.executable._zip2zip,
144 inputs = base_files + [ctx.executable._merge_zips]
159 executable = ctx.executable._merge_zips,
172 ctx.executable._bundletool,
189 executable = ctx.executable._bundletool,
233 executable = True,
239 executable = True,
[all …]
/build/bazel/rules/
Dsh_binary.bzl35 output = ctx.outputs.executable
39 inputs = [dep.files_to_run.executable],
40 command = "cp %s %s" % (dep.files_to_run.executable.path, output.path),
50 executable = output,
66 executable = True,
Dapex.bzl78 apex_manifest[(directory, filename)] = default_info.files_to_run.executable
80 # cc_binary just takes the final executable from the runfiles.
81 apex_manifest[("bin", dep.label.name)] = dep[DefaultInfo].files_to_run.executable
123 executable = apex_toolchain.conv_apex_manifest,
177 avbtool_files.executable.dirname,
178 e2fsdroid_files.executable.dirname,
179 mke2fs_files.executable.dirname,
180 resize2fs_files.executable.dirname,
216 executable = ctx.executable._bazel_apexer_wrapper,
230 ctx.executable._signapk,
[all …]
Dproto_file_utils.bzl87 protoc: proto compiler executable.
91 plugin_executable: plugin executable file
140 executable = protoc,
/build/make/core/
Dhost_executable_internal.mk15 ifdef host-executable-hook
16 $(call host-executable-hook)
43 $(transform-host-o-to-executable)
Dexecutable_internal.mk15 ifdef target-executable-hook
16 $(call target-executable-hook)
34 $(error $(LOCAL_PATH): $(LOCAL_MODULE) is statically linking libc to dynamic executable, please rem…
70 $(transform-o-to-static-executable)
74 $(transform-o-to-executable)
/build/make/tools/
Devent_log_tags.bzl20 executable = ctx.executable._logtag_to_java_tool,
29 executable = True,
/build/bazel/rules/android/
Dandroid_app_keystore.bzl39 executable = openssl,
63 executable = openssl,
83 executable = keytool,
90 openssl = ctx.executable._openssl
91 keytool = ctx.executable._keytool
118 executable = True,
125 executable = True,
/build/soong/ui/build/
Dtest_build.go51 executable := config.PrebuiltBuildTool("ninja")
57 cmd := Command(ctx, config, "ninja", executable, args...)
125 queryCmd := Command(ctx, config, "ninja", executable,
Dninja.go44 executable := config.PrebuiltBuildTool("ninja")
72 cmd := Command(ctx, config, "ninja", executable, args...)
Dexec.go42 func Command(ctx Context, config Config, name string, executable string, args ...string) *Cmd {
44 Cmd: exec.CommandContext(ctx.Context, executable, args...),
/build/bazel/rules/java/
Dproto.bzl26 plugin_executable = ctx.executable.plugin
37 protoc = ctx.executable._protoc,
61 executable = True,
65 executable = True,
/build/soong/python/scripts/
Dmain.py10 sys.executable = None
/build/soong/cuj/
Dcuj.go110 if executable, err := os.Executable(); err == nil {
111 …trace.ImportMicrofactoryLog(filepath.Join(filepath.Dir(executable), "."+filepath.Base(executable)+…
/build/pesto/experiments/prepare_bazel_test_env/data/templates/tools/tradefederation/core/
DBUILD.bazel.template61 executable=True,
73 executable=True,
/build/make/core/combo/
DHOST_darwin-x86_64.mk46 define transform-host-o-to-executable-inner
/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/
Dcc_test.bzl.template54 return [DefaultInfo(executable = script, runfiles = runfiles)]
82 executable = True,
Djava_test.bzl.template59 return [DefaultInfo(executable=script, runfiles=runfiles)]
92 executable=True,

12