@@ -242,7 +242,7 @@ add_library(googleapis-c++::spanner_client ALIAS spanner_client)
242242# To avoid maintaining the list of files for the library, export them to a .bzl
243243# file.
244244include (CreateBazelConfig)
245- create_bazel_config(spanner_client)
245+ create_bazel_config(spanner_client YEAR "2019" )
246246
247247# Create a header-only library for the mocks. We use a CMake `INTERFACE` library
248248# for these, a regular library would not work on macOS (where the library needs
@@ -258,7 +258,7 @@ target_link_libraries(
258258 spanner_client_mocks
259259 INTERFACE googleapis-c++::spanner_client google_cloud_cpp_testing
260260 GTest::gmock_main GTest::gmock GTest::gtest)
261- create_bazel_config(spanner_client_mocks)
261+ create_bazel_config(spanner_client_mocks YEAR "2019" )
262262target_include_directories (
263263 spanner_client_mocks
264264 INTERFACE $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR} >
@@ -308,7 +308,7 @@ function (spanner_client_define_tests)
308308 PUBLIC spanner_client_mocks googleapis-c++::spanner_client
309309 google_cloud_cpp_testing GTest::gmock_main GTest::gmock
310310 GTest::gtest)
311- create_bazel_config(spanner_client_testing)
311+ create_bazel_config(spanner_client_testing YEAR "2019" )
312312
313313 target_include_directories (
314314 spanner_client_testing
@@ -380,7 +380,7 @@ function (spanner_client_define_tests)
380380 # Export the list of unit tests to a .bzl file so we do not need to maintain
381381 # the list in two places.
382382 export_list_to_bazel("spanner_client_unit_tests.bzl"
383- "spanner_client_unit_tests" )
383+ "spanner_client_unit_tests" YEAR "2019" )
384384
385385 # Create a custom target so we can say "build all the tests"
386386 add_custom_target (spanner-client-tests)
@@ -426,7 +426,7 @@ function (spanner_client_define_benchmarks)
426426 # Export the list of benchmarks to a .bzl file so we do not need to maintain
427427 # the list in two places.
428428 export_list_to_bazel("spanner_client_benchmarks.bzl"
429- "spanner_client_benchmarks" )
429+ "spanner_client_benchmarks" YEAR "2019" )
430430
431431 # Create a custom target so we can say "build all the benchmarks"
432432 add_custom_target (spanner-client-benchmarks)
0 commit comments