Skip to content

Commit 4de5a20

Browse files
sharmaharisamcopybara-github
authored andcommitted
Internal Change
PiperOrigin-RevId: 799493191 Change-Id: I4e00acb71471082aaecdbbf551c3ddc53bc90c97
1 parent cd2197e commit 4de5a20

File tree

77 files changed

+854
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+854
-77
lines changed

cmd/config/entrypoint/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
2-
load("//tools:defs.bzl", "buildpack")
2+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
33

44
licenses(["notice"])
55

@@ -15,6 +15,16 @@ buildpack(
1515
],
1616
)
1717

18+
buildpack_using_runner(
19+
name = "entrypoint_using_runner",
20+
buildpack_id = "google.config.entrypoint",
21+
prefix = "config",
22+
version = "0.9.0",
23+
visibility = [
24+
"//builders:__subpackages__",
25+
],
26+
)
27+
1828
go_binary(
1929
name = "main",
2030
srcs = ["main.go"],

cmd/config/flex/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for detecting GAE Flex applications.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "flex_using_runner",
22+
buildpack_id = "google.config.flex",
23+
prefix = "config",
24+
version = "0.9.1",
25+
visibility = [
26+
"//builders:__subpackages__",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/cpp/clear_source/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
2-
load("//tools:defs.bzl", "buildpack")
2+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
33

44
licenses(["notice"])
55

@@ -15,6 +15,16 @@ buildpack(
1515
],
1616
)
1717

18+
buildpack_using_runner(
19+
name = "clear_source_using_runner",
20+
buildpack_id = "google.cpp.clear_source",
21+
prefix = "cpp",
22+
version = "0.1.0",
23+
visibility = [
24+
"//builders:cpp_builders",
25+
],
26+
)
27+
1828
go_binary(
1929
name = "main",
2030
srcs = ["main.go"],

cmd/cpp/functions_framework/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Buildpack for the C++ functions framework
22

33
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -22,6 +22,16 @@ buildpack(
2222
],
2323
)
2424

25+
buildpack_using_runner(
26+
name = "functions_framework_using_runner",
27+
buildpack_id = "google.cpp.functions_framework",
28+
prefix = "cpp",
29+
version = "0.1.0",
30+
visibility = [
31+
"//builders:cpp_builders",
32+
],
33+
)
34+
2535
go_binary(
2636
name = "main",
2737
srcs = [

cmd/dart/compile/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Go build Buildpack
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "compile_using_runner",
22+
buildpack_id = "google.dart.compile",
23+
prefix = "dart",
24+
version = "1.0.0",
25+
visibility = [
26+
"//builders:dart_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/dart/pub/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for the Node.js runtime.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "pub_using_runner",
22+
buildpack_id = "google.dart.pub",
23+
prefix = "dart",
24+
version = "0.1.0",
25+
visibility = [
26+
"//builders:dart_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/dart/sdk/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for the Node.js runtime.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "sdk_using_runner",
22+
buildpack_id = "google.dart.sdk",
23+
prefix = "dart",
24+
version = "1.0.0",
25+
visibility = [
26+
"//builders:dart_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/dotnet/appengine/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for the Java runtime.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "appengine_using_runner",
22+
buildpack_id = "google.dotnet.appengine",
23+
prefix = "dotnet",
24+
version = "0.9.0",
25+
visibility = [
26+
"//builders:dotnet_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/dotnet/appengine_main/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for the Java runtime.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "appengine_main_using_runner",
22+
buildpack_id = "google.dotnet.appengine_main",
23+
prefix = "dotnet",
24+
version = "0.9.0",
25+
visibility = [
26+
"//builders:dotnet_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

cmd/dotnet/flex/BUILD.bazel

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
22

33
# Buildpack for the dotnet runtime on Flex.
4-
load("//tools:defs.bzl", "buildpack")
4+
load("//tools:defs.bzl", "buildpack", "buildpack_using_runner")
55

66
licenses(["notice"])
77

@@ -17,6 +17,16 @@ buildpack(
1717
],
1818
)
1919

20+
buildpack_using_runner(
21+
name = "flex_using_runner",
22+
buildpack_id = "google.dotnet.flex",
23+
prefix = "dotnet",
24+
version = "0.9.0",
25+
visibility = [
26+
"//builders:dotnet_builders",
27+
],
28+
)
29+
2030
go_binary(
2131
name = "main",
2232
srcs = ["main.go"],

0 commit comments

Comments
 (0)