Skip to content

Commit

Permalink
Add a placeholder iamf/api/BUILD file.
Browse files Browse the repository at this point in the history
  - Intended public API end-points may live here in the future.

PiperOrigin-RevId: 687414048
  • Loading branch information
jwcullen committed Oct 18, 2024
1 parent 3143aa1 commit f36aaa7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
Empty file added iamf/api/BUILD
Empty file.
5 changes: 4 additions & 1 deletion iamf/cli/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Example commandline interface tools for the IAMF software.

package(default_visibility = ["//iamf/cli:__subpackages__"])
package(default_visibility = [
"//iamf/api:__subpackages__",
"//iamf/cli:__subpackages__",
])

exports_files(
srcs = [
Expand Down
5 changes: 4 additions & 1 deletion iamf/cli/proto/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

# [internal] load cc_proto_library.bzl

package(default_visibility = ["//iamf/cli:__subpackages__"])
package(default_visibility = [
"//iamf/api:__subpackages__",
"//iamf/cli:__subpackages__",
])

proto_library(
name = "arbitrary_obu_proto",
Expand Down
5 changes: 4 additions & 1 deletion iamf/cli/proto_to_obu/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Files to create `iamf/obu` classes from proto definitions.

package(default_visibility = ["//iamf/cli:__subpackages__"])
package(default_visibility = [
"//iamf/api:__subpackages__",
"//iamf/cli:__subpackages__",
])

cc_library(
name = "arbitrary_obu_generator",
Expand Down
5 changes: 4 additions & 1 deletion iamf/cli/testdata/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
package(default_visibility = ["//iamf/cli:__subpackages__"])
package(default_visibility = [
"//iamf/api:__subpackages__",
"//iamf/cli:__subpackages__",
])

filegroup(
name = "input_wav_files",
Expand Down
5 changes: 4 additions & 1 deletion iamf/cli/textproto_templates/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
package(default_visibility = ["//iamf/cli:__subpackages__"])
package(default_visibility = [
"//iamf/api:__subpackages__",
"//iamf/cli:__subpackages__",
])

filegroup(
name = "textprotos",
Expand Down

0 comments on commit f36aaa7

Please sign in to comment.