/build/soong/python/tests/ |
D | py-cmd_test.py | 51 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/ |
D | stripped_cc_common.bzl | 61 "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 …]
|
D | generate_toc.bzl | 33 "CLANG_BIN": ctx.executable._readelf.dirname, 37 ctx.executable._readelf, 40 executable = ctx.executable._toc_script, 68 executable = True, 74 executable = True,
|
D | versioned_cc_common.bzl | 47 build_number_stamper = ctx.executable._build_number_stamper.path, 49 tools = [ctx.executable._build_number_stamper], 63 executable = True, 85 executable = out_file,
|
D | cc_stub_library.bzl | 53 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"…
|
D | cc_proto.bzl | 32 plugin_executable = ctx.executable.plugin 49 protoc = ctx.executable._protoc, 80 executable = True, 84 executable = True,
|
/build/bazel/rules/apex/ |
D | toolchain.bzl | 55 "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),
|
D | mainline_modules.bzl | 59 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/ |
D | sh_binary.bzl | 35 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,
|
D | apex.bzl | 78 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 …]
|
D | proto_file_utils.bzl | 87 protoc: proto compiler executable. 91 plugin_executable: plugin executable file 140 executable = protoc,
|
/build/make/core/ |
D | host_executable_internal.mk | 15 ifdef host-executable-hook 16 $(call host-executable-hook) 43 $(transform-host-o-to-executable)
|
D | executable_internal.mk | 15 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/ |
D | event_log_tags.bzl | 20 executable = ctx.executable._logtag_to_java_tool, 29 executable = True,
|
/build/bazel/rules/android/ |
D | android_app_keystore.bzl | 39 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/ |
D | test_build.go | 51 executable := config.PrebuiltBuildTool("ninja") 57 cmd := Command(ctx, config, "ninja", executable, args...) 125 queryCmd := Command(ctx, config, "ninja", executable,
|
D | ninja.go | 44 executable := config.PrebuiltBuildTool("ninja") 72 cmd := Command(ctx, config, "ninja", executable, args...)
|
D | exec.go | 42 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/ |
D | proto.bzl | 26 plugin_executable = ctx.executable.plugin 37 protoc = ctx.executable._protoc, 61 executable = True, 65 executable = True,
|
/build/soong/python/scripts/ |
D | main.py | 10 sys.executable = None
|
/build/soong/cuj/ |
D | cuj.go | 110 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/ |
D | BUILD.bazel.template | 61 executable=True, 73 executable=True,
|
/build/make/core/combo/ |
D | HOST_darwin-x86_64.mk | 46 define transform-host-o-to-executable-inner
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/ |
D | cc_test.bzl.template | 54 return [DefaultInfo(executable = script, runfiles = runfiles)] 82 executable = True,
|
D | java_test.bzl.template | 59 return [DefaultInfo(executable=script, runfiles=runfiles)] 92 executable=True,
|