Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions ci/cloudbuild/builds/quickstart-bazel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ export CXX=g++

mapfile -t args < <(bazel::common_args)
for lib in $(quickstart::libraries); do
io::log_h2 "Running Bazel quickstart for ${lib}"
io::run env -C "${PROJECT_ROOT}/google/cloud/${lib}/quickstart" \
bazel build "${args[@]}" :quickstart
io::log_h2 "Building Bazel quickstart for ${lib} using WORKSPACE"
USE_BAZEL_VERSION=7.6.1 io::run env -C "${PROJECT_ROOT}/google/cloud/${lib}/quickstart" \
bazel build --enable_workspace --noenable_bzlmod "${args[@]}" :quickstart

io::log_h2 "Building Bazel quickstart for ${lib} using MODULE"
USE_BAZEL_VERSION=8.5.1 io::run env -C "${PROJECT_ROOT}/google/cloud/${lib}/quickstart" \
bazel build --noenable_workspace --enable_bzlmod "${args[@]}" :quickstart
done
6 changes: 3 additions & 3 deletions google/cloud/accessapproval/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/alloydb/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/apigateway/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/apigeeconnect/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/apikeys/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/apiregistry/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/appengine/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/apphub/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/artifactregistry/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/asset/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/assuredworkloads/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/auditmanager/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/automl/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/backupdr/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/baremetalsolution/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/batch/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/beyondcorp/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
8 changes: 0 additions & 8 deletions google/cloud/bigquery/quickstart/.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,12 @@
# Use host-OS-specific config lines from bazelrc files.
build --enable_platform_specific_config=true



build:linux --cxxopt=-std=c++17
build:macos --cxxopt=-std=c++17


build:linux --host_cxxopt=-std=c++17
build:macos --host_cxxopt=-std=c++17

# Do not create the convenience links. They are inconvenient when the build
# runs inside a docker image or if one builds a quickstart and then builds
# the project separately.
build --experimental_convenience_symlinks=ignore

#Our quickstarts do not yet support bzlmod
build --noenable_bzlmod
build --enable_workspace
20 changes: 20 additions & 0 deletions google/cloud/bigquery/quickstart/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module(
name = "quickstart",
version = "0.0.0",
)

bazel_dep(name = "google_cloud_cpp", version = "3.1.0")
6 changes: 3 additions & 3 deletions google/cloud/bigquery/quickstart/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "google_cloud_cpp",
sha256 = "699955112a4c57ae9111fbadeff1698674a1762acd77daf36360e6dfc227dc93",
strip_prefix = "google-cloud-cpp-2.42.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.42.0.tar.gz",
sha256 = "e868bdb537121d2169fbc1ef69b81f4b4f96e97891c4567a6533d4adf62bffde",
strip_prefix = "google-cloud-cpp-3.1.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v3.1.0.tar.gz",
)

load("@google_cloud_cpp//bazel:workspace0.bzl", "gl_cpp_workspace0")
Expand Down
17 changes: 17 additions & 0 deletions google/cloud/bigquery/quickstart/bazel/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

licenses(["notice"]) # Apache v2

package(default_visibility = ["//:__subpackages__"])
Loading
Loading