Rename all Bazel BUILD files to BUILD.bazel (#12663)

These were historically just called "BUILD" with no file extension
because that's the name that Google's internal version of Bazel (Blaze)
uses. We've been inconsistently adding the extension and this cleans it
all up. In a world with multiple build systems, having a file extension
makes sense :-) For instance, it avoids conflicts with directories
named "build" (the required name in some processes) on case-insensitive
filesystems.

Accomplished with:

```shell
find . -type d \
\( -path './bazel-*' -o -path ./third_party -o -path './*.venv' \) \
-prune -false -o -name BUILD -print | xargs -I {} mv {} {}.bazel
```
diff --git a/build_tools/BUILD b/build_tools/BUILD.bazel
similarity index 100%
rename from build_tools/BUILD
rename to build_tools/BUILD.bazel
diff --git a/build_tools/embed_data/BUILD b/build_tools/embed_data/BUILD.bazel
similarity index 100%
rename from build_tools/embed_data/BUILD
rename to build_tools/embed_data/BUILD.bazel
diff --git a/compiler/bindings/c/BUILD b/compiler/bindings/c/BUILD.bazel
similarity index 100%
rename from compiler/bindings/c/BUILD
rename to compiler/bindings/c/BUILD.bazel
diff --git a/compiler/bindings/c/CMakeLists.txt b/compiler/bindings/c/CMakeLists.txt
index 14c6567..4b71684 100644
--- a/compiler/bindings/c/CMakeLists.txt
+++ b/compiler/bindings/c/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/bindings/c/BUILD                                                    #
+# compiler/bindings/c/BUILD.bazel                                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/BUILD b/compiler/src/BUILD.bazel
similarity index 100%
rename from compiler/src/BUILD
rename to compiler/src/BUILD.bazel
diff --git a/compiler/src/iree/compiler/API/BUILD b/compiler/src/iree/compiler/API/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/API/BUILD
rename to compiler/src/iree/compiler/API/BUILD.bazel
diff --git a/compiler/src/iree/compiler/API/CMakeLists.txt b/compiler/src/iree/compiler/API/CMakeLists.txt
index 7860727..08c0097 100644
--- a/compiler/src/iree/compiler/API/CMakeLists.txt
+++ b/compiler/src/iree/compiler/API/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/API/BUILD                                         #
+# compiler/src/iree/compiler/API/BUILD.bazel                                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/API/Internal/BUILD b/compiler/src/iree/compiler/API/Internal/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/API/Internal/BUILD
rename to compiler/src/iree/compiler/API/Internal/BUILD.bazel
diff --git a/compiler/src/iree/compiler/API/Internal/CMakeLists.txt b/compiler/src/iree/compiler/API/Internal/CMakeLists.txt
index b5b4cd0..9367170 100644
--- a/compiler/src/iree/compiler/API/Internal/CMakeLists.txt
+++ b/compiler/src/iree/compiler/API/Internal/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/API/Internal/BUILD                                #
+# compiler/src/iree/compiler/API/Internal/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/API/test/BUILD b/compiler/src/iree/compiler/API/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/API/test/BUILD
rename to compiler/src/iree/compiler/API/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/API/test/CMakeLists.txt b/compiler/src/iree/compiler/API/test/CMakeLists.txt
index 772cb59..08f671b 100644
--- a/compiler/src/iree/compiler/API/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/API/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/API/test/BUILD                                    #
+# compiler/src/iree/compiler/API/test/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/BUILD b/compiler/src/iree/compiler/Bindings/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/BUILD
rename to compiler/src/iree/compiler/Bindings/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/CMakeLists.txt
index 0db3728..353981b 100644
--- a/compiler/src/iree/compiler/Bindings/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/BUILD                                    #
+# compiler/src/iree/compiler/Bindings/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/Native/BUILD b/compiler/src/iree/compiler/Bindings/Native/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/Native/BUILD
rename to compiler/src/iree/compiler/Bindings/Native/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/Native/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/Native/CMakeLists.txt
index eb63289..cbbd11e 100644
--- a/compiler/src/iree/compiler/Bindings/Native/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/Native/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/Native/BUILD                             #
+# compiler/src/iree/compiler/Bindings/Native/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD b/compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD
rename to compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/Native/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/Native/Transforms/CMakeLists.txt
index 864ed3e..663f226 100644
--- a/compiler/src/iree/compiler/Bindings/Native/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/Native/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD                  #
+# compiler/src/iree/compiler/Bindings/Native/Transforms/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD b/compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/Native/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/Native/Transforms/test/CMakeLists.txt
index 61f49b8..a18d1c6 100644
--- a/compiler/src/iree/compiler/Bindings/Native/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/Native/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD             #
+# compiler/src/iree/compiler/Bindings/Native/Transforms/test/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/BUILD b/compiler/src/iree/compiler/Bindings/TFLite/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/TFLite/BUILD
rename to compiler/src/iree/compiler/Bindings/TFLite/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/TFLite/CMakeLists.txt
index 68cbd8a..5005910 100644
--- a/compiler/src/iree/compiler/Bindings/TFLite/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/TFLite/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/TFLite/BUILD                             #
+# compiler/src/iree/compiler/Bindings/TFLite/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD
rename to compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/CMakeLists.txt
index 5969f3b..cea9734 100644
--- a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD                  #
+# compiler/src/iree/compiler/Bindings/TFLite/Transforms/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/CMakeLists.txt
index 6142c35..a3f1ece 100644
--- a/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD             #
+# compiler/src/iree/compiler/Bindings/TFLite/Transforms/test/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/BUILD b/compiler/src/iree/compiler/Codegen/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/BUILD
rename to compiler/src/iree/compiler/Codegen/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/CMakeLists.txt
index e478ce7..f4060c6 100644
--- a/compiler/src/iree/compiler/Codegen/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/BUILD                                     #
+# compiler/src/iree/compiler/Codegen/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Common/BUILD b/compiler/src/iree/compiler/Codegen/Common/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Common/BUILD
rename to compiler/src/iree/compiler/Codegen/Common/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Common/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Common/CMakeLists.txt
index e4b3575..c518185 100644
--- a/compiler/src/iree/compiler/Codegen/Common/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Common/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Common/BUILD                              #
+# compiler/src/iree/compiler/Codegen/Common/BUILD.bazel                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD b/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD
rename to compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/CMakeLists.txt
index 3a21833..63a7562 100644
--- a/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Common/TransformExtensions/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD          #
+# compiler/src/iree/compiler/Codegen/Common/TransformExtensions/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Common/test/BUILD b/compiler/src/iree/compiler/Codegen/Common/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Common/test/BUILD
rename to compiler/src/iree/compiler/Codegen/Common/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Common/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Common/test/CMakeLists.txt
index d06056f..f9e699f 100644
--- a/compiler/src/iree/compiler/Codegen/Common/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Common/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Common/test/BUILD                         #
+# compiler/src/iree/compiler/Codegen/Common/test/BUILD.bazel                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Dialect/BUILD b/compiler/src/iree/compiler/Codegen/Dialect/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Dialect/BUILD
rename to compiler/src/iree/compiler/Codegen/Dialect/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Dialect/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Dialect/CMakeLists.txt
index 70f2bdc..ce421c2 100644
--- a/compiler/src/iree/compiler/Codegen/Dialect/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Dialect/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Dialect/BUILD                             #
+# compiler/src/iree/compiler/Codegen/Dialect/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Dialect/test/BUILD b/compiler/src/iree/compiler/Codegen/Dialect/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Dialect/test/BUILD
rename to compiler/src/iree/compiler/Codegen/Dialect/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Dialect/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Dialect/test/CMakeLists.txt
index 1b94416..0022fdd 100644
--- a/compiler/src/iree/compiler/Codegen/Dialect/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Dialect/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Dialect/test/BUILD                        #
+# compiler/src/iree/compiler/Codegen/Dialect/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Interfaces/BUILD b/compiler/src/iree/compiler/Codegen/Interfaces/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Interfaces/BUILD
rename to compiler/src/iree/compiler/Codegen/Interfaces/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Interfaces/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Interfaces/CMakeLists.txt
index d0c6466..d7e4c95 100644
--- a/compiler/src/iree/compiler/Codegen/Interfaces/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Interfaces/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Interfaces/BUILD                          #
+# compiler/src/iree/compiler/Codegen/Interfaces/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD b/compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMCPU/CMakeLists.txt
index b470bce..20e4fb9 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMCPU/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMCPU/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD                             #
+# compiler/src/iree/compiler/Codegen/LLVMCPU/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD b/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/CMakeLists.txt
index a393a77..fa06b14 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD         #
+# compiler/src/iree/compiler/Codegen/LLVMCPU/TransformExtensions/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD b/compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMCPU/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMCPU/test/CMakeLists.txt
index 814627b..edac22d 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMCPU/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMCPU/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD                        #
+# compiler/src/iree/compiler/Codegen/LLVMCPU/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD b/compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMGPU/CMakeLists.txt
index e3e19de..36fc5f6 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMGPU/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMGPU/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD                             #
+# compiler/src/iree/compiler/Codegen/LLVMGPU/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD b/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/CMakeLists.txt
index a1be50e..521b5ae 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD         #
+# compiler/src/iree/compiler/Codegen/LLVMGPU/TransformExtensions/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD b/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/CMakeLists.txt
index 0405147..82887e7 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD                       #
+# compiler/src/iree/compiler/Codegen/LLVMGPU/Utils/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD b/compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD
rename to compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/LLVMGPU/test/CMakeLists.txt
index 2d50f51..d1e5027 100644
--- a/compiler/src/iree/compiler/Codegen/LLVMGPU/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/LLVMGPU/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD                        #
+# compiler/src/iree/compiler/Codegen/LLVMGPU/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/SPIRV/BUILD b/compiler/src/iree/compiler/Codegen/SPIRV/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/SPIRV/BUILD
rename to compiler/src/iree/compiler/Codegen/SPIRV/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/SPIRV/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/SPIRV/CMakeLists.txt
index 077e4d4..c4c66e4 100644
--- a/compiler/src/iree/compiler/Codegen/SPIRV/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/SPIRV/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/SPIRV/BUILD                               #
+# compiler/src/iree/compiler/Codegen/SPIRV/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD b/compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD
rename to compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/SPIRV/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/SPIRV/test/CMakeLists.txt
index dc6cc53..288bb12 100644
--- a/compiler/src/iree/compiler/Codegen/SPIRV/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/SPIRV/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD                          #
+# compiler/src/iree/compiler/Codegen/SPIRV/test/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Sandbox/BUILD b/compiler/src/iree/compiler/Codegen/Sandbox/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Sandbox/BUILD
rename to compiler/src/iree/compiler/Codegen/Sandbox/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Sandbox/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Sandbox/CMakeLists.txt
index 26dae0f..3d785f9 100644
--- a/compiler/src/iree/compiler/Codegen/Sandbox/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Sandbox/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Sandbox/BUILD                             #
+# compiler/src/iree/compiler/Codegen/Sandbox/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD b/compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD
rename to compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Sandbox/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Sandbox/test/CMakeLists.txt
index 8ea0e75..e96fa47 100644
--- a/compiler/src/iree/compiler/Codegen/Sandbox/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Sandbox/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD                        #
+# compiler/src/iree/compiler/Codegen/Sandbox/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD
rename to compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CMakeLists.txt
index 71c1876..9995c72 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD          #
+# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD
rename to compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/CMakeLists.txt
index 33816ca..7a3ba70 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD      #
+# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/CPU/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD
rename to compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/CMakeLists.txt
index 1a8f267..bdb6eff 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD   #
+# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD
rename to compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/CMakeLists.txt
index d727a7c..e832612 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD      #
+# compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Transforms/BUILD b/compiler/src/iree/compiler/Codegen/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Transforms/BUILD
rename to compiler/src/iree/compiler/Codegen/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Transforms/CMakeLists.txt
index d0a4fc6..c6aaa1c 100644
--- a/compiler/src/iree/compiler/Codegen/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Transforms/BUILD                          #
+# compiler/src/iree/compiler/Codegen/Transforms/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/Utils/BUILD b/compiler/src/iree/compiler/Codegen/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/Utils/BUILD
rename to compiler/src/iree/compiler/Codegen/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Utils/CMakeLists.txt
index 97027f5..bfc32bd 100644
--- a/compiler/src/iree/compiler/Codegen/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/Utils/BUILD                               #
+# compiler/src/iree/compiler/Codegen/Utils/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/VMVX/BUILD b/compiler/src/iree/compiler/Codegen/VMVX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/VMVX/BUILD
rename to compiler/src/iree/compiler/Codegen/VMVX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/VMVX/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/VMVX/CMakeLists.txt
index b4faa02..cff6901 100644
--- a/compiler/src/iree/compiler/Codegen/VMVX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/VMVX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/VMVX/BUILD                                #
+# compiler/src/iree/compiler/Codegen/VMVX/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/VMVX/test/BUILD b/compiler/src/iree/compiler/Codegen/VMVX/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/VMVX/test/BUILD
rename to compiler/src/iree/compiler/Codegen/VMVX/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/VMVX/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/VMVX/test/CMakeLists.txt
index d23f104..8057b4b 100644
--- a/compiler/src/iree/compiler/Codegen/VMVX/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/VMVX/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/VMVX/test/BUILD                           #
+# compiler/src/iree/compiler/Codegen/VMVX/test/BUILD.bazel                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/WGSL/BUILD b/compiler/src/iree/compiler/Codegen/WGSL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/WGSL/BUILD
rename to compiler/src/iree/compiler/Codegen/WGSL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/WGSL/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/WGSL/CMakeLists.txt
index 3e7f3dc..2833a9a 100644
--- a/compiler/src/iree/compiler/Codegen/WGSL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/WGSL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/WGSL/BUILD                                #
+# compiler/src/iree/compiler/Codegen/WGSL/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Codegen/WGSL/test/BUILD b/compiler/src/iree/compiler/Codegen/WGSL/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Codegen/WGSL/test/BUILD
rename to compiler/src/iree/compiler/Codegen/WGSL/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Codegen/WGSL/test/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/WGSL/test/CMakeLists.txt
index 4a7bac2..3b78b10 100644
--- a/compiler/src/iree/compiler/Codegen/WGSL/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Codegen/WGSL/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Codegen/WGSL/test/BUILD                           #
+# compiler/src/iree/compiler/Codegen/WGSL/test/BUILD.bazel                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/ConstEval/BUILD b/compiler/src/iree/compiler/ConstEval/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/ConstEval/BUILD
rename to compiler/src/iree/compiler/ConstEval/BUILD.bazel
diff --git a/compiler/src/iree/compiler/ConstEval/CMakeLists.txt b/compiler/src/iree/compiler/ConstEval/CMakeLists.txt
index df44a39..9475791 100644
--- a/compiler/src/iree/compiler/ConstEval/CMakeLists.txt
+++ b/compiler/src/iree/compiler/ConstEval/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/ConstEval/BUILD                                   #
+# compiler/src/iree/compiler/ConstEval/BUILD.bazel                             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/ConstEval/test/BUILD b/compiler/src/iree/compiler/ConstEval/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/ConstEval/test/BUILD
rename to compiler/src/iree/compiler/ConstEval/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/ConstEval/test/CMakeLists.txt b/compiler/src/iree/compiler/ConstEval/test/CMakeLists.txt
index 5495edb..79fe3d9 100644
--- a/compiler/src/iree/compiler/ConstEval/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/ConstEval/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/ConstEval/test/BUILD                              #
+# compiler/src/iree/compiler/ConstEval/test/BUILD.bazel                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/BUILD b/compiler/src/iree/compiler/Dialect/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/BUILD
rename to compiler/src/iree/compiler/Dialect/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/CMakeLists.txt
index 5210321..068e353 100644
--- a/compiler/src/iree/compiler/Dialect/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/BUILD                                     #
+# compiler/src/iree/compiler/Dialect/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/BUILD b/compiler/src/iree/compiler/Dialect/Flow/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/CMakeLists.txt
index c45d45a..61b1aee 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/BUILD                                #
+# compiler/src/iree/compiler/Dialect/Flow/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/Conversion/CMakeLists.txt
index 29f8297..eba6d84 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Flow/Conversion/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/CMakeLists.txt
index c8fe234..8cdb19e 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD        #
+# compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/BUILD.bazel  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/CMakeLists.txt
index 3bb5f30..7391eb3 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD   #
+# compiler/src/iree/compiler/Dialect/Flow/Conversion/TensorToFlow/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/IR/BUILD b/compiler/src/iree/compiler/Dialect/Flow/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/IR/CMakeLists.txt
index 4b904c5..0b945f2 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/IR/BUILD                             #
+# compiler/src/iree/compiler/Dialect/Flow/IR/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/IR/test/CMakeLists.txt
index 8367743..22c48f7 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD                        #
+# compiler/src/iree/compiler/Dialect/Flow/IR/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD b/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/CMakeLists.txt
index 18869e6..054c02a 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD            #
+# compiler/src/iree/compiler/Dialect/Flow/TransformExtensions/BUILD.bazel      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/Transforms/CMakeLists.txt
index fb69b07..11f525c 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Flow/Transforms/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/CMakeLists.txt
index 7178f26..000befe 100644
--- a/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Flow/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/Flow/Transforms/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Analysis/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Analysis/CMakeLists.txt
index cbe4da3..e25ba34 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Analysis/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Analysis/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD                        #
+# compiler/src/iree/compiler/Dialect/HAL/Analysis/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/BUILD b/compiler/src/iree/compiler/Dialect/HAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/CMakeLists.txt
index ce275d3..f0a749d 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/BUILD                                 #
+# compiler/src/iree/compiler/Dialect/HAL/BUILD.bazel                           #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/CMakeLists.txt
index 8f19dc4..c452ba5 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD                      #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/BUILD.bazel                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/CMakeLists.txt
index ea5ba1a..fec5123 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD             #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/CMakeLists.txt
index e58e744..2a57a80 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD        #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToHAL/test/BUILD.bazel  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/CMakeLists.txt
index ddee28d..421ef74 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD              #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/CMakeLists.txt
index 3a17225..9ec645e 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD         #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/HALToVM/test/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/CMakeLists.txt
index 68d2552..2828cac 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD        #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/BUILD.bazel  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/CMakeLists.txt
index 28444ed..e7b8acb 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD   #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/StandardToHAL/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/CMakeLists.txt
index e5a9898..5c339fa 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD          #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/CMakeLists.txt
index 4dd18b4..19aecb7 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD     #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/StreamToHAL/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/CMakeLists.txt
index 926fde6..ceaa5b9 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD            #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/BUILD.bazel      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/CMakeLists.txt
index 80fe0fb..ef0b95b 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD       #
+# compiler/src/iree/compiler/Dialect/HAL/Conversion/UtilToHAL/test/BUILD.bazel #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/IR/BUILD b/compiler/src/iree/compiler/Dialect/HAL/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/IR/CMakeLists.txt
index e583b4f..50f0726 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/IR/BUILD                              #
+# compiler/src/iree/compiler/Dialect/HAL/IR/BUILD.bazel                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/IR/test/CMakeLists.txt
index 1925df8..55bd72b 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD                         #
+# compiler/src/iree/compiler/Dialect/HAL/IR/test/BUILD.bazel                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/CMakeLists.txt
index 102788f..2883f48 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/BUILD                          #
+# compiler/src/iree/compiler/Dialect/HAL/Target/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/CMakeLists.txt
index b3c2281..75b4838 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD         #
+# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/Builtins/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/CMakeLists.txt
index 418760a..c601f82 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD                  #
+# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/CMakeLists.txt
index fb9896f..85c22e4 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD         #
+# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/internal/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/CMakeLists.txt
index 70340ef..ab804fd 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD             #
+# compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/test/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/CMakeLists.txt
index 7559bf2..d28852b 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD               #
+# compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/CMakeLists.txt
index f083a82..2ec7662 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD          #
+# compiler/src/iree/compiler/Dialect/HAL/Target/MetalSPIRV/test/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/CMakeLists.txt
index 44e5553..915d61d 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD                     #
+# compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/CMakeLists.txt
index c193f55..ba172c0 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/HAL/Target/ROCM/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/CMakeLists.txt
index d60973b..ebf3e29 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD                     #
+# compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/CMakeLists.txt
index 62958ba..3cfa587 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/HAL/Target/VMVX/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/CMakeLists.txt
index 0ac275a..78df6a4 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD              #
+# compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/CMakeLists.txt
index 3ef7672..d499c24 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD         #
+# compiler/src/iree/compiler/Dialect/HAL/Target/VulkanSPIRV/test/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Transforms/CMakeLists.txt
index 10ad946..c9af4cc 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD                      #
+# compiler/src/iree/compiler/Dialect/HAL/Transforms/BUILD.bazel                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/CMakeLists.txt
index dbda10b..6c2f342 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD                 #
+# compiler/src/iree/compiler/Dialect/HAL/Transforms/test/BUILD.bazel           #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD b/compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD
rename to compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/HAL/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/HAL/Utils/CMakeLists.txt
index e40ec3e..5509ab2 100644
--- a/compiler/src/iree/compiler/Dialect/HAL/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/HAL/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD                           #
+# compiler/src/iree/compiler/Dialect/HAL/Utils/BUILD.bazel                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Analysis/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Analysis/CMakeLists.txt
index f11a82d..f2788b1 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Analysis/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Analysis/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Stream/Analysis/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/BUILD b/compiler/src/iree/compiler/Dialect/Stream/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Builtins/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Builtins/CMakeLists.txt
index 2489c67..390e916 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Builtins/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Builtins/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Stream/Builtins/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/CMakeLists.txt
index cb2d97f..607b11f 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/BUILD                              #
+# compiler/src/iree/compiler/Dialect/Stream/BUILD.bazel                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/CMakeLists.txt
index 0257d5f..3e59579 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD                   #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/CMakeLists.txt
index afd314a..6619936 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD      #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/CMakeLists.txt
index c038d00..09237fd 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/FlowToStream/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt
index d086416..9943ac1 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD       #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/CMakeLists.txt
index 59524df..e2aa589 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD  #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/CMakeLists.txt
index d8abbeb..dcbcd5e 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD  #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/CMakeLists.txt
index 996c665..171d205 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD#
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/StandardToStream/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/CMakeLists.txt
index 597e5e7..43fa228 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD      #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/CMakeLists.txt
index 8df683d..ea88a09 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD #
+# compiler/src/iree/compiler/Dialect/Stream/Conversion/UtilToStream/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/IR/BUILD b/compiler/src/iree/compiler/Dialect/Stream/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/IR/CMakeLists.txt
index ab46fbd..63a65c7 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/IR/BUILD                           #
+# compiler/src/iree/compiler/Dialect/Stream/IR/BUILD.bazel                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/IR/test/CMakeLists.txt
index 652393f..a6b8498 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD                      #
+# compiler/src/iree/compiler/Dialect/Stream/IR/test/BUILD.bazel                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Transforms/CMakeLists.txt
index 2931292..942dbce 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD                   #
+# compiler/src/iree/compiler/Dialect/Stream/Transforms/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/CMakeLists.txt
index 431636c..4a526c1 100644
--- a/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD              #
+# compiler/src/iree/compiler/Dialect/Stream/Transforms/test/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD b/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/CMakeLists.txt
index 602a167..e2e0efa 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD            #
+# compiler/src/iree/compiler/Dialect/Util/Analysis/Attributes/BUILD.bazel      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD b/compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Analysis/CMakeLists.txt
index 50f106e..744148a 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Analysis/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Analysis/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD                       #
+# compiler/src/iree/compiler/Dialect/Util/Analysis/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD b/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/CMakeLists.txt
index 1ad556e..9fe654f 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD              #
+# compiler/src/iree/compiler/Dialect/Util/Analysis/Constant/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD b/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/CMakeLists.txt
index f431207..589e2b9 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD                   #
+# compiler/src/iree/compiler/Dialect/Util/Analysis/DFX/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/BUILD b/compiler/src/iree/compiler/Dialect/Util/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/CMakeLists.txt
index deb8d4d..57a26c8 100644
--- a/compiler/src/iree/compiler/Dialect/Util/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/BUILD                                #
+# compiler/src/iree/compiler/Dialect/Util/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Conversion/CMakeLists.txt
index 46735ea..97915da 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Util/Conversion/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/CMakeLists.txt
index cade39a..22ab7a5 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD        #
+# compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/BUILD.bazel  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/CMakeLists.txt
index f18b4d2..87b2cce 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD   #
+# compiler/src/iree/compiler/Dialect/Util/Conversion/MemRefToUtil/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD b/compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Conversion/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Conversion/test/CMakeLists.txt
index dd67129..9c1bbe9 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Conversion/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Conversion/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/Util/Conversion/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/IR/BUILD b/compiler/src/iree/compiler/Dialect/Util/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/IR/CMakeLists.txt
index 4b7a0a0..1403cde 100644
--- a/compiler/src/iree/compiler/Dialect/Util/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/IR/BUILD                             #
+# compiler/src/iree/compiler/Dialect/Util/IR/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/IR/test/CMakeLists.txt
index 966b885..f7b1813 100644
--- a/compiler/src/iree/compiler/Dialect/Util/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD                        #
+# compiler/src/iree/compiler/Dialect/Util/IR/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Transforms/CMakeLists.txt
index ff4882c..0f9302f 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD                     #
+# compiler/src/iree/compiler/Dialect/Util/Transforms/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Util/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Util/Transforms/test/CMakeLists.txt
index 0edebb3..6addbe9 100644
--- a/compiler/src/iree/compiler/Dialect/Util/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Util/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/Util/Transforms/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD b/compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Analysis/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Analysis/CMakeLists.txt
index 639a4f9..840217f 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Analysis/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Analysis/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD                         #
+# compiler/src/iree/compiler/Dialect/VM/Analysis/BUILD.bazel                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Analysis/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Analysis/test/CMakeLists.txt
index 482bfa5..905eb23 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Analysis/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Analysis/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD                    #
+# compiler/src/iree/compiler/Dialect/VM/Analysis/test/BUILD.bazel              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/BUILD b/compiler/src/iree/compiler/Dialect/VM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/CMakeLists.txt
index d737cce..d19f415 100644
--- a/compiler/src/iree/compiler/Dialect/VM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/BUILD                                  #
+# compiler/src/iree/compiler/Dialect/VM/BUILD.bazel                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/CMakeLists.txt
index 4d79fcc..2eba0ff 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD                       #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/CMakeLists.txt
index 9a34767..7c95e16 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD              #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/CMakeLists.txt
index 35d70fc..9e2bc3f 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD         #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/MathToVM/test/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/CMakeLists.txt
index 19c4c4b..47b246d 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD          #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/CMakeLists.txt
index 5e6bb83..1cfa375 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD     #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/StandardToVM/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/CMakeLists.txt
index 6096292..2476f35 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD              #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/BUILD.bazel        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/CMakeLists.txt
index 4ce03e6..6ad38c8 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD         #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/UtilToVM/test/BUILD.bazel   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/CMakeLists.txt
index 9085ca3..bf5491b 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD             #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/CMakeLists.txt
index dcc37f7..9e061d6 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD        #
+# compiler/src/iree/compiler/Dialect/VM/Conversion/VMToEmitC/test/BUILD.bazel  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/IR/BUILD b/compiler/src/iree/compiler/Dialect/VM/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/IR/CMakeLists.txt
index 5b4350b..59fa3bb 100644
--- a/compiler/src/iree/compiler/Dialect/VM/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/IR/BUILD                               #
+# compiler/src/iree/compiler/Dialect/VM/IR/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/IR/test/CMakeLists.txt
index 00c626b..e998fd5 100644
--- a/compiler/src/iree/compiler/Dialect/VM/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD                          #
+# compiler/src/iree/compiler/Dialect/VM/IR/test/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/BUILD b/compiler/src/iree/compiler/Dialect/VM/Target/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Target/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Target/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/CMakeLists.txt
index a5092db..4c677bd 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD                  #
+# compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/CMakeLists.txt
index 3f40c1e..5e10f37 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD             #
+# compiler/src/iree/compiler/Dialect/VM/Target/Bytecode/test/BUILD.bazel       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD b/compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Target/C/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Target/C/CMakeLists.txt
index 7c0af51..866fadc 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Target/C/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Target/C/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD                         #
+# compiler/src/iree/compiler/Dialect/VM/Target/C/BUILD.bazel                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Tools/BUILD b/compiler/src/iree/compiler/Dialect/VM/Tools/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Tools/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Tools/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Transforms/CMakeLists.txt
index bc89229..a46a0a1 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD                       #
+# compiler/src/iree/compiler/Dialect/VM/Transforms/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Transforms/test/CMakeLists.txt
index 2d3ed40..e612812 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD                  #
+# compiler/src/iree/compiler/Dialect/VM/Transforms/test/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VM/Utils/BUILD b/compiler/src/iree/compiler/Dialect/VM/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VM/Utils/BUILD
rename to compiler/src/iree/compiler/Dialect/VM/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VM/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VM/Utils/CMakeLists.txt
index 75da638..61aabc6 100644
--- a/compiler/src/iree/compiler/Dialect/VM/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VM/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VM/Utils/BUILD                            #
+# compiler/src/iree/compiler/Dialect/VM/Utils/BUILD.bazel                      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/CMakeLists.txt
index e963fc4..d6630ca 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/BUILD                                #
+# compiler/src/iree/compiler/Dialect/VMVX/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/CMakeLists.txt
index ead7129..11b5352 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD                     #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/CMakeLists.txt
index 32d1ff6..f85149c 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD           #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/BUILD.bazel     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/CMakeLists.txt
index 41d98de..cbfb539 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD      #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/HALToVMVX/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/CMakeLists.txt
index 71ed5ba..3a0dd00 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD      #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/CMakeLists.txt
index b6ffbc8..9421f2e 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/StandardToVMVX/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/CMakeLists.txt
index 261e617..eaf617b 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD            #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/BUILD.bazel      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/CMakeLists.txt
index 8fca982..0da7d63 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD       #
+# compiler/src/iree/compiler/Dialect/VMVX/Conversion/VMVXToVM/test/BUILD.bazel #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/IR/CMakeLists.txt
index d4ba1d2..b8a613d 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD                             #
+# compiler/src/iree/compiler/Dialect/VMVX/IR/BUILD.bazel                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/IR/test/CMakeLists.txt
index db4be43..38715f1 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD                        #
+# compiler/src/iree/compiler/Dialect/VMVX/IR/test/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/CMakeLists.txt
index b035661..18d1c68 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD                     #
+# compiler/src/iree/compiler/Dialect/VMVX/Transforms/BUILD.bazel               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/CMakeLists.txt
index 8c3455f..b0d594b 100644
--- a/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD                #
+# compiler/src/iree/compiler/Dialect/VMVX/Transforms/test/BUILD.bazel          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/BUILD b/compiler/src/iree/compiler/Dialect/Vulkan/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Vulkan/BUILD
rename to compiler/src/iree/compiler/Dialect/Vulkan/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Vulkan/CMakeLists.txt
index 9e74183..487e4f1 100644
--- a/compiler/src/iree/compiler/Dialect/Vulkan/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Vulkan/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Vulkan/BUILD                              #
+# compiler/src/iree/compiler/Dialect/Vulkan/BUILD.bazel                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD b/compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD
rename to compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/IR/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Vulkan/IR/CMakeLists.txt
index bdd4bae..3b03c56 100644
--- a/compiler/src/iree/compiler/Dialect/Vulkan/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Vulkan/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD                           #
+# compiler/src/iree/compiler/Dialect/Vulkan/IR/BUILD.bazel                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD b/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/CMakeLists.txt
index 1c9bea4..cebe847 100644
--- a/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Vulkan/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD                      #
+# compiler/src/iree/compiler/Dialect/Vulkan/IR/test/BUILD.bazel                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD
rename to compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/CMakeLists.txt
index 1bd7df6..8435767 100644
--- a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD                        #
+# compiler/src/iree/compiler/Dialect/Vulkan/Utils/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD
rename to compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/CMakeLists.txt
index 49a6498..bb5cbe5 100644
--- a/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD                   #
+# compiler/src/iree/compiler/Dialect/Vulkan/Utils/test/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/BUILD b/compiler/src/iree/compiler/InputConversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/BUILD
rename to compiler/src/iree/compiler/InputConversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/Common/BUILD b/compiler/src/iree/compiler/InputConversion/Common/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/Common/BUILD
rename to compiler/src/iree/compiler/InputConversion/Common/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/Common/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/Common/CMakeLists.txt
index 85e111a..d1875ce 100644
--- a/compiler/src/iree/compiler/InputConversion/Common/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/Common/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/Common/BUILD                      #
+# compiler/src/iree/compiler/InputConversion/Common/BUILD.bazel                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/Common/test/BUILD b/compiler/src/iree/compiler/InputConversion/Common/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/Common/test/BUILD
rename to compiler/src/iree/compiler/InputConversion/Common/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/Common/test/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/Common/test/CMakeLists.txt
index 19be1bb..f10539a 100644
--- a/compiler/src/iree/compiler/InputConversion/Common/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/Common/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/Common/test/BUILD                 #
+# compiler/src/iree/compiler/InputConversion/Common/test/BUILD.bazel           #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/MHLO/BUILD b/compiler/src/iree/compiler/InputConversion/MHLO/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/MHLO/BUILD
rename to compiler/src/iree/compiler/InputConversion/MHLO/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/MHLO/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/MHLO/CMakeLists.txt
index 80b6afe..4afeac3 100644
--- a/compiler/src/iree/compiler/InputConversion/MHLO/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/MHLO/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/MHLO/BUILD                        #
+# compiler/src/iree/compiler/InputConversion/MHLO/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD b/compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD
rename to compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/MHLO/test/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/MHLO/test/CMakeLists.txt
index 8b9aa57..a4e8336 100644
--- a/compiler/src/iree/compiler/InputConversion/MHLO/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/MHLO/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD                   #
+# compiler/src/iree/compiler/InputConversion/MHLO/test/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/TMTensor/BUILD b/compiler/src/iree/compiler/InputConversion/TMTensor/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/TMTensor/BUILD
rename to compiler/src/iree/compiler/InputConversion/TMTensor/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/TMTensor/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/TMTensor/CMakeLists.txt
index 37df6d8..4a60190 100644
--- a/compiler/src/iree/compiler/InputConversion/TMTensor/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/TMTensor/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/TMTensor/BUILD                    #
+# compiler/src/iree/compiler/InputConversion/TMTensor/BUILD.bazel              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD b/compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD
rename to compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/TMTensor/test/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/TMTensor/test/CMakeLists.txt
index 8420120..6a6976d 100644
--- a/compiler/src/iree/compiler/InputConversion/TMTensor/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/TMTensor/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD               #
+# compiler/src/iree/compiler/InputConversion/TMTensor/test/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/TOSA/BUILD b/compiler/src/iree/compiler/InputConversion/TOSA/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/TOSA/BUILD
rename to compiler/src/iree/compiler/InputConversion/TOSA/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/TOSA/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/TOSA/CMakeLists.txt
index 5b5c193..ec4e510 100644
--- a/compiler/src/iree/compiler/InputConversion/TOSA/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/TOSA/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/TOSA/BUILD                        #
+# compiler/src/iree/compiler/InputConversion/TOSA/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD b/compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD
rename to compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/InputConversion/TOSA/test/CMakeLists.txt b/compiler/src/iree/compiler/InputConversion/TOSA/test/CMakeLists.txt
index fd1621b..a7d99e7 100644
--- a/compiler/src/iree/compiler/InputConversion/TOSA/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/InputConversion/TOSA/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD                   #
+# compiler/src/iree/compiler/InputConversion/TOSA/test/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/BUILD b/compiler/src/iree/compiler/Modules/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/BUILD
rename to compiler/src/iree/compiler/Modules/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/CMakeLists.txt b/compiler/src/iree/compiler/Modules/CMakeLists.txt
index b1e16bb..106c073 100644
--- a/compiler/src/iree/compiler/Modules/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/BUILD                                     #
+# compiler/src/iree/compiler/Modules/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/Check/BUILD b/compiler/src/iree/compiler/Modules/Check/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/Check/BUILD
rename to compiler/src/iree/compiler/Modules/Check/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/Check/CMakeLists.txt b/compiler/src/iree/compiler/Modules/Check/CMakeLists.txt
index ddb13ff..7d86510 100644
--- a/compiler/src/iree/compiler/Modules/Check/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/Check/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/Check/BUILD                               #
+# compiler/src/iree/compiler/Modules/Check/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/Check/Conversion/BUILD b/compiler/src/iree/compiler/Modules/Check/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/Check/Conversion/BUILD
rename to compiler/src/iree/compiler/Modules/Check/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/Check/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Modules/Check/Conversion/CMakeLists.txt
index 3d2aa11..582a6ad 100644
--- a/compiler/src/iree/compiler/Modules/Check/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/Check/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/Check/Conversion/BUILD                    #
+# compiler/src/iree/compiler/Modules/Check/Conversion/BUILD.bazel              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/Check/IR/BUILD b/compiler/src/iree/compiler/Modules/Check/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/Check/IR/BUILD
rename to compiler/src/iree/compiler/Modules/Check/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/Check/IR/CMakeLists.txt b/compiler/src/iree/compiler/Modules/Check/IR/CMakeLists.txt
index 7c1b6cc..c3a8574 100644
--- a/compiler/src/iree/compiler/Modules/Check/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/Check/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/Check/IR/BUILD                            #
+# compiler/src/iree/compiler/Modules/Check/IR/BUILD.bazel                      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/Check/test/BUILD b/compiler/src/iree/compiler/Modules/Check/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/Check/test/BUILD
rename to compiler/src/iree/compiler/Modules/Check/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/Check/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/Check/test/CMakeLists.txt
index 58389eb..f086659 100644
--- a/compiler/src/iree/compiler/Modules/Check/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/Check/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/Check/test/BUILD                          #
+# compiler/src/iree/compiler/Modules/Check/test/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/BUILD b/compiler/src/iree/compiler/Modules/HAL/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/CMakeLists.txt
index 81938ef..61b85d9 100644
--- a/compiler/src/iree/compiler/Modules/HAL/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/BUILD                                 #
+# compiler/src/iree/compiler/Modules/HAL/BUILD.bazel                           #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/CMakeLists.txt
index 9a2c30c..8737c08 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/BUILD                          #
+# compiler/src/iree/compiler/Modules/HAL/Inline/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/CMakeLists.txt
index c7d6c9f..92cbbcf 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD               #
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/CMakeLists.txt
index 875ba4e..1029e08 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD #
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/CMakeLists.txt
index f87d5df..47b6581 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALInlineToVM/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/CMakeLists.txt
index 83910c0..c289898 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/CMakeLists.txt
index fd16c97..06c36b8 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/HALToHALInline/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/CMakeLists.txt
index 9fe418a..645b1e0 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/CMakeLists.txt
index 3241150..628f2ca 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Inline/Conversion/StreamToHALInline/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/CMakeLists.txt
index f12ac96..48c56e8 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD                       #
+# compiler/src/iree/compiler/Modules/HAL/Inline/IR/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/CMakeLists.txt
index 6863b91..1bf43fe 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD                  #
+# compiler/src/iree/compiler/Modules/HAL/Inline/IR/test/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/CMakeLists.txt
index 622b01c..6f721a5 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD               #
+# compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/CMakeLists.txt
index f42f66f..6b20ad3 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD          #
+# compiler/src/iree/compiler/Modules/HAL/Inline/Transforms/test/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/CMakeLists.txt
index cd32ed9..f1ee07b 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/BUILD                          #
+# compiler/src/iree/compiler/Modules/HAL/Loader/BUILD.bazel                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/CMakeLists.txt
index 71f9c85..9817623 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD               #
+# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/CMakeLists.txt
index 0a3ad7f..4160c02 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD #
+# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/CMakeLists.txt
index 9534d6c..edf0abf 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/HALLoaderToVM/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/CMakeLists.txt
index 9d94f39..a6ffbb4 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/CMakeLists.txt
index 5a329c4..9af6fce 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD#
+# compiler/src/iree/compiler/Modules/HAL/Loader/Conversion/StreamToHALLoader/test/BUILD.bazel#
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/CMakeLists.txt
index bffe687..eb4840e 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD                       #
+# compiler/src/iree/compiler/Modules/HAL/Loader/IR/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/CMakeLists.txt
index f6809c9..b063ba6 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD                  #
+# compiler/src/iree/compiler/Modules/HAL/Loader/IR/test/BUILD.bazel            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/CMakeLists.txt
index 9e3bd26..dcdc24c 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD               #
+# compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/BUILD.bazel         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD
rename to compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/CMakeLists.txt b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/CMakeLists.txt
index e83d447..e9bc047 100644
--- a/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD          #
+# compiler/src/iree/compiler/Modules/HAL/Loader/Transforms/test/BUILD.bazel    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Pipelines/BUILD b/compiler/src/iree/compiler/Pipelines/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Pipelines/BUILD
rename to compiler/src/iree/compiler/Pipelines/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Preprocessing/BUILD b/compiler/src/iree/compiler/Preprocessing/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Preprocessing/BUILD
rename to compiler/src/iree/compiler/Preprocessing/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Preprocessing/CMakeLists.txt b/compiler/src/iree/compiler/Preprocessing/CMakeLists.txt
index c8b91c0..67a6ed2 100644
--- a/compiler/src/iree/compiler/Preprocessing/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Preprocessing/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Preprocessing/BUILD                               #
+# compiler/src/iree/compiler/Preprocessing/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Preprocessing/Common/BUILD b/compiler/src/iree/compiler/Preprocessing/Common/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Preprocessing/Common/BUILD
rename to compiler/src/iree/compiler/Preprocessing/Common/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Preprocessing/Common/CMakeLists.txt b/compiler/src/iree/compiler/Preprocessing/Common/CMakeLists.txt
index 5e7f72c..4cb8e2a 100644
--- a/compiler/src/iree/compiler/Preprocessing/Common/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Preprocessing/Common/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Preprocessing/Common/BUILD                        #
+# compiler/src/iree/compiler/Preprocessing/Common/BUILD.bazel                  #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Preprocessing/Common/test/BUILD b/compiler/src/iree/compiler/Preprocessing/Common/test/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Preprocessing/Common/test/BUILD
rename to compiler/src/iree/compiler/Preprocessing/Common/test/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Preprocessing/Common/test/CMakeLists.txt b/compiler/src/iree/compiler/Preprocessing/Common/test/CMakeLists.txt
index a2592f7..6c7ac7c 100644
--- a/compiler/src/iree/compiler/Preprocessing/Common/test/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Preprocessing/Common/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Preprocessing/Common/test/BUILD                   #
+# compiler/src/iree/compiler/Preprocessing/Common/test/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/compiler/src/iree/compiler/Tools/BUILD b/compiler/src/iree/compiler/Tools/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Tools/BUILD
rename to compiler/src/iree/compiler/Tools/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Utils/BUILD b/compiler/src/iree/compiler/Utils/BUILD.bazel
similarity index 100%
rename from compiler/src/iree/compiler/Utils/BUILD
rename to compiler/src/iree/compiler/Utils/BUILD.bazel
diff --git a/compiler/src/iree/compiler/Utils/CMakeLists.txt b/compiler/src/iree/compiler/Utils/CMakeLists.txt
index 6b767fc..c814655 100644
--- a/compiler/src/iree/compiler/Utils/CMakeLists.txt
+++ b/compiler/src/iree/compiler/Utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# compiler/src/iree/compiler/Utils/BUILD                                       #
+# compiler/src/iree/compiler/Utils/BUILD.bazel                                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/integrations/tensorflow/BUILD b/integrations/tensorflow/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/BUILD
rename to integrations/tensorflow/BUILD.bazel
diff --git a/integrations/tensorflow/build_tools/bazel/BUILD b/integrations/tensorflow/build_tools/bazel/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/build_tools/bazel/BUILD
rename to integrations/tensorflow/build_tools/bazel/BUILD.bazel
diff --git a/integrations/tensorflow/iree-dialects/BUILD b/integrations/tensorflow/iree-dialects/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree-dialects/BUILD
rename to integrations/tensorflow/iree-dialects/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/BUILD b/integrations/tensorflow/iree_tf_compiler/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/BUILD
rename to integrations/tensorflow/iree_tf_compiler/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/MHLO/BUILD b/integrations/tensorflow/iree_tf_compiler/MHLO/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/MHLO/BUILD
rename to integrations/tensorflow/iree_tf_compiler/MHLO/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/MHLO/test/BUILD b/integrations/tensorflow/iree_tf_compiler/MHLO/test/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/MHLO/test/BUILD
rename to integrations/tensorflow/iree_tf_compiler/MHLO/test/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/TF/BUILD b/integrations/tensorflow/iree_tf_compiler/TF/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/TF/BUILD
rename to integrations/tensorflow/iree_tf_compiler/TF/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/TF/test/BUILD b/integrations/tensorflow/iree_tf_compiler/TF/test/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/TF/test/BUILD
rename to integrations/tensorflow/iree_tf_compiler/TF/test/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/TFL/BUILD b/integrations/tensorflow/iree_tf_compiler/TFL/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/TFL/BUILD
rename to integrations/tensorflow/iree_tf_compiler/TFL/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/TFL/test/BUILD b/integrations/tensorflow/iree_tf_compiler/TFL/test/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/TFL/test/BUILD
rename to integrations/tensorflow/iree_tf_compiler/TFL/test/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/TFL/test/import/BUILD b/integrations/tensorflow/iree_tf_compiler/TFL/test/import/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/TFL/test/import/BUILD
rename to integrations/tensorflow/iree_tf_compiler/TFL/test/import/BUILD.bazel
diff --git a/integrations/tensorflow/iree_tf_compiler/Utils/BUILD b/integrations/tensorflow/iree_tf_compiler/Utils/BUILD.bazel
similarity index 100%
rename from integrations/tensorflow/iree_tf_compiler/Utils/BUILD
rename to integrations/tensorflow/iree_tf_compiler/Utils/BUILD.bazel
diff --git a/lib/BUILD b/lib/BUILD.bazel
similarity index 100%
rename from lib/BUILD
rename to lib/BUILD.bazel
diff --git a/llvm-external-projects/iree-dialects/BUILD b/llvm-external-projects/iree-dialects/BUILD.bazel
similarity index 100%
rename from llvm-external-projects/iree-dialects/BUILD
rename to llvm-external-projects/iree-dialects/BUILD.bazel
diff --git a/runtime/bindings/tflite/BUILD b/runtime/bindings/tflite/BUILD.bazel
similarity index 100%
rename from runtime/bindings/tflite/BUILD
rename to runtime/bindings/tflite/BUILD.bazel
diff --git a/runtime/bindings/tflite/testdata/BUILD b/runtime/bindings/tflite/testdata/BUILD.bazel
similarity index 100%
rename from runtime/bindings/tflite/testdata/BUILD
rename to runtime/bindings/tflite/testdata/BUILD.bazel
diff --git a/runtime/src/BUILD b/runtime/src/BUILD.bazel
similarity index 100%
rename from runtime/src/BUILD
rename to runtime/src/BUILD.bazel
diff --git a/runtime/src/iree/base/BUILD b/runtime/src/iree/base/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/base/BUILD
rename to runtime/src/iree/base/BUILD.bazel
diff --git a/runtime/src/iree/base/internal/BUILD b/runtime/src/iree/base/internal/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/base/internal/BUILD
rename to runtime/src/iree/base/internal/BUILD.bazel
diff --git a/runtime/src/iree/base/internal/CMakeLists.txt b/runtime/src/iree/base/internal/CMakeLists.txt
index 2dfe704..08baecd 100644
--- a/runtime/src/iree/base/internal/CMakeLists.txt
+++ b/runtime/src/iree/base/internal/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/base/internal/BUILD                                         #
+# runtime/src/iree/base/internal/BUILD.bazel                                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/base/internal/flatcc/BUILD b/runtime/src/iree/base/internal/flatcc/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/base/internal/flatcc/BUILD
rename to runtime/src/iree/base/internal/flatcc/BUILD.bazel
diff --git a/runtime/src/iree/base/internal/flatcc/CMakeLists.txt b/runtime/src/iree/base/internal/flatcc/CMakeLists.txt
index 92d2ee7..e75bc89 100644
--- a/runtime/src/iree/base/internal/flatcc/CMakeLists.txt
+++ b/runtime/src/iree/base/internal/flatcc/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/base/internal/flatcc/BUILD                                  #
+# runtime/src/iree/base/internal/flatcc/BUILD.bazel                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/base/testing/BUILD b/runtime/src/iree/base/testing/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/base/testing/BUILD
rename to runtime/src/iree/base/testing/BUILD.bazel
diff --git a/runtime/src/iree/builtins/BUILD b/runtime/src/iree/builtins/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/BUILD
rename to runtime/src/iree/builtins/BUILD.bazel
diff --git a/runtime/src/iree/builtins/CMakeLists.txt b/runtime/src/iree/builtins/CMakeLists.txt
index 954e388..7cab141 100644
--- a/runtime/src/iree/builtins/CMakeLists.txt
+++ b/runtime/src/iree/builtins/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/BUILD                                              #
+# runtime/src/iree/builtins/BUILD.bazel                                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/device/BUILD b/runtime/src/iree/builtins/device/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/device/BUILD
rename to runtime/src/iree/builtins/device/BUILD.bazel
diff --git a/runtime/src/iree/builtins/device/CMakeLists.txt b/runtime/src/iree/builtins/device/CMakeLists.txt
index 0b01c73..b71b7f7 100644
--- a/runtime/src/iree/builtins/device/CMakeLists.txt
+++ b/runtime/src/iree/builtins/device/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/device/BUILD                                       #
+# runtime/src/iree/builtins/device/BUILD.bazel                                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/device/tools/BUILD b/runtime/src/iree/builtins/device/tools/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/device/tools/BUILD
rename to runtime/src/iree/builtins/device/tools/BUILD.bazel
diff --git a/runtime/src/iree/builtins/device/tools/CMakeLists.txt b/runtime/src/iree/builtins/device/tools/CMakeLists.txt
index 70e68f0..908be19 100644
--- a/runtime/src/iree/builtins/device/tools/CMakeLists.txt
+++ b/runtime/src/iree/builtins/device/tools/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/device/tools/BUILD                                 #
+# runtime/src/iree/builtins/device/tools/BUILD.bazel                           #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/musl/BUILD b/runtime/src/iree/builtins/musl/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/musl/BUILD
rename to runtime/src/iree/builtins/musl/BUILD.bazel
diff --git a/runtime/src/iree/builtins/musl/CMakeLists.txt b/runtime/src/iree/builtins/musl/CMakeLists.txt
index 8da1a73..74c2467 100644
--- a/runtime/src/iree/builtins/musl/CMakeLists.txt
+++ b/runtime/src/iree/builtins/musl/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/musl/BUILD                                         #
+# runtime/src/iree/builtins/musl/BUILD.bazel                                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/musl/bin/BUILD b/runtime/src/iree/builtins/musl/bin/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/musl/bin/BUILD
rename to runtime/src/iree/builtins/musl/bin/BUILD.bazel
diff --git a/runtime/src/iree/builtins/musl/bin/CMakeLists.txt b/runtime/src/iree/builtins/musl/bin/CMakeLists.txt
index 433fd58..b92c8aa 100644
--- a/runtime/src/iree/builtins/musl/bin/CMakeLists.txt
+++ b/runtime/src/iree/builtins/musl/bin/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/musl/bin/BUILD                                     #
+# runtime/src/iree/builtins/musl/bin/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/ukernel/BUILD b/runtime/src/iree/builtins/ukernel/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/ukernel/BUILD
rename to runtime/src/iree/builtins/ukernel/BUILD.bazel
diff --git a/runtime/src/iree/builtins/ukernel/CMakeLists.txt b/runtime/src/iree/builtins/ukernel/CMakeLists.txt
index 88c4dac..8bfa1fa 100644
--- a/runtime/src/iree/builtins/ukernel/CMakeLists.txt
+++ b/runtime/src/iree/builtins/ukernel/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/ukernel/BUILD                                      #
+# runtime/src/iree/builtins/ukernel/BUILD.bazel                                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/builtins/ukernel/arch/BUILD b/runtime/src/iree/builtins/ukernel/arch/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/ukernel/arch/BUILD
rename to runtime/src/iree/builtins/ukernel/arch/BUILD.bazel
diff --git a/runtime/src/iree/builtins/ukernel/arch/arm_64/BUILD b/runtime/src/iree/builtins/ukernel/arch/arm_64/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/ukernel/arch/arm_64/BUILD
rename to runtime/src/iree/builtins/ukernel/arch/arm_64/BUILD.bazel
diff --git a/runtime/src/iree/builtins/ukernel/tools/BUILD b/runtime/src/iree/builtins/ukernel/tools/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/builtins/ukernel/tools/BUILD
rename to runtime/src/iree/builtins/ukernel/tools/BUILD.bazel
diff --git a/runtime/src/iree/builtins/ukernel/tools/CMakeLists.txt b/runtime/src/iree/builtins/ukernel/tools/CMakeLists.txt
index c8f4816..a90b93a 100644
--- a/runtime/src/iree/builtins/ukernel/tools/CMakeLists.txt
+++ b/runtime/src/iree/builtins/ukernel/tools/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/builtins/ukernel/tools/BUILD                                #
+# runtime/src/iree/builtins/ukernel/tools/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/BUILD b/runtime/src/iree/hal/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/BUILD
rename to runtime/src/iree/hal/BUILD.bazel
diff --git a/runtime/src/iree/hal/CMakeLists.txt b/runtime/src/iree/hal/CMakeLists.txt
index 349c5f0..aacba71 100644
--- a/runtime/src/iree/hal/CMakeLists.txt
+++ b/runtime/src/iree/hal/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/BUILD                                                   #
+# runtime/src/iree/hal/BUILD.bazel                                             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/BUILD b/runtime/src/iree/hal/drivers/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/BUILD
rename to runtime/src/iree/hal/drivers/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/local_sync/BUILD b/runtime/src/iree/hal/drivers/local_sync/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/local_sync/BUILD
rename to runtime/src/iree/hal/drivers/local_sync/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/local_sync/CMakeLists.txt b/runtime/src/iree/hal/drivers/local_sync/CMakeLists.txt
index 22f18c7..383005d 100644
--- a/runtime/src/iree/hal/drivers/local_sync/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/local_sync/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/local_sync/BUILD                                #
+# runtime/src/iree/hal/drivers/local_sync/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/local_sync/registration/BUILD b/runtime/src/iree/hal/drivers/local_sync/registration/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/local_sync/registration/BUILD
rename to runtime/src/iree/hal/drivers/local_sync/registration/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/local_sync/registration/CMakeLists.txt b/runtime/src/iree/hal/drivers/local_sync/registration/CMakeLists.txt
index 20d50d4..4e864b8 100644
--- a/runtime/src/iree/hal/drivers/local_sync/registration/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/local_sync/registration/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/local_sync/registration/BUILD                   #
+# runtime/src/iree/hal/drivers/local_sync/registration/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/local_task/BUILD b/runtime/src/iree/hal/drivers/local_task/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/local_task/BUILD
rename to runtime/src/iree/hal/drivers/local_task/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/local_task/CMakeLists.txt b/runtime/src/iree/hal/drivers/local_task/CMakeLists.txt
index 30fdf09..92ccbf2 100644
--- a/runtime/src/iree/hal/drivers/local_task/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/local_task/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/local_task/BUILD                                #
+# runtime/src/iree/hal/drivers/local_task/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/local_task/registration/BUILD b/runtime/src/iree/hal/drivers/local_task/registration/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/local_task/registration/BUILD
rename to runtime/src/iree/hal/drivers/local_task/registration/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/local_task/registration/CMakeLists.txt b/runtime/src/iree/hal/drivers/local_task/registration/CMakeLists.txt
index 7c97833..910fe3e 100644
--- a/runtime/src/iree/hal/drivers/local_task/registration/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/local_task/registration/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/local_task/registration/BUILD                   #
+# runtime/src/iree/hal/drivers/local_task/registration/BUILD.bazel             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/vulkan/BUILD b/runtime/src/iree/hal/drivers/vulkan/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/vulkan/BUILD
rename to runtime/src/iree/hal/drivers/vulkan/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/vulkan/CMakeLists.txt b/runtime/src/iree/hal/drivers/vulkan/CMakeLists.txt
index 4762fd8..246e862 100644
--- a/runtime/src/iree/hal/drivers/vulkan/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/vulkan/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/vulkan/BUILD                                    #
+# runtime/src/iree/hal/drivers/vulkan/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/vulkan/builtin/BUILD b/runtime/src/iree/hal/drivers/vulkan/builtin/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/vulkan/builtin/BUILD
rename to runtime/src/iree/hal/drivers/vulkan/builtin/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/vulkan/builtin/CMakeLists.txt b/runtime/src/iree/hal/drivers/vulkan/builtin/CMakeLists.txt
index 0b7d369..03bb93a 100644
--- a/runtime/src/iree/hal/drivers/vulkan/builtin/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/vulkan/builtin/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/vulkan/builtin/BUILD                            #
+# runtime/src/iree/hal/drivers/vulkan/builtin/BUILD.bazel                      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/vulkan/registration/BUILD b/runtime/src/iree/hal/drivers/vulkan/registration/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/vulkan/registration/BUILD
rename to runtime/src/iree/hal/drivers/vulkan/registration/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/vulkan/registration/CMakeLists.txt b/runtime/src/iree/hal/drivers/vulkan/registration/CMakeLists.txt
index 15bcb7b..75bf4c6 100644
--- a/runtime/src/iree/hal/drivers/vulkan/registration/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/vulkan/registration/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/vulkan/registration/BUILD                       #
+# runtime/src/iree/hal/drivers/vulkan/registration/BUILD.bazel                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/drivers/vulkan/util/BUILD b/runtime/src/iree/hal/drivers/vulkan/util/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/drivers/vulkan/util/BUILD
rename to runtime/src/iree/hal/drivers/vulkan/util/BUILD.bazel
diff --git a/runtime/src/iree/hal/drivers/vulkan/util/CMakeLists.txt b/runtime/src/iree/hal/drivers/vulkan/util/CMakeLists.txt
index 7a82fdd..05eea12 100644
--- a/runtime/src/iree/hal/drivers/vulkan/util/CMakeLists.txt
+++ b/runtime/src/iree/hal/drivers/vulkan/util/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/drivers/vulkan/util/BUILD                               #
+# runtime/src/iree/hal/drivers/vulkan/util/BUILD.bazel                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/local/BUILD b/runtime/src/iree/hal/local/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/local/BUILD
rename to runtime/src/iree/hal/local/BUILD.bazel
diff --git a/runtime/src/iree/hal/local/CMakeLists.txt b/runtime/src/iree/hal/local/CMakeLists.txt
index 610b7a1..615a924 100644
--- a/runtime/src/iree/hal/local/CMakeLists.txt
+++ b/runtime/src/iree/hal/local/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/local/BUILD                                             #
+# runtime/src/iree/hal/local/BUILD.bazel                                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/local/elf/BUILD b/runtime/src/iree/hal/local/elf/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/local/elf/BUILD
rename to runtime/src/iree/hal/local/elf/BUILD.bazel
diff --git a/runtime/src/iree/hal/local/elf/CMakeLists.txt b/runtime/src/iree/hal/local/elf/CMakeLists.txt
index 118ea8c..808aa49 100644
--- a/runtime/src/iree/hal/local/elf/CMakeLists.txt
+++ b/runtime/src/iree/hal/local/elf/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/local/elf/BUILD                                         #
+# runtime/src/iree/hal/local/elf/BUILD.bazel                                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/local/elf/testdata/BUILD b/runtime/src/iree/hal/local/elf/testdata/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/local/elf/testdata/BUILD
rename to runtime/src/iree/hal/local/elf/testdata/BUILD.bazel
diff --git a/runtime/src/iree/hal/local/elf/testdata/CMakeLists.txt b/runtime/src/iree/hal/local/elf/testdata/CMakeLists.txt
index 4e53175..76f0648 100644
--- a/runtime/src/iree/hal/local/elf/testdata/CMakeLists.txt
+++ b/runtime/src/iree/hal/local/elf/testdata/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/local/elf/testdata/BUILD                                #
+# runtime/src/iree/hal/local/elf/testdata/BUILD.bazel                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/local/loaders/BUILD b/runtime/src/iree/hal/local/loaders/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/local/loaders/BUILD
rename to runtime/src/iree/hal/local/loaders/BUILD.bazel
diff --git a/runtime/src/iree/hal/local/loaders/CMakeLists.txt b/runtime/src/iree/hal/local/loaders/CMakeLists.txt
index 495bd24..c5cd760 100644
--- a/runtime/src/iree/hal/local/loaders/CMakeLists.txt
+++ b/runtime/src/iree/hal/local/loaders/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/local/loaders/BUILD                                     #
+# runtime/src/iree/hal/local/loaders/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/hal/local/loaders/registration/BUILD b/runtime/src/iree/hal/local/loaders/registration/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/local/loaders/registration/BUILD
rename to runtime/src/iree/hal/local/loaders/registration/BUILD.bazel
diff --git a/runtime/src/iree/hal/utils/BUILD b/runtime/src/iree/hal/utils/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/hal/utils/BUILD
rename to runtime/src/iree/hal/utils/BUILD.bazel
diff --git a/runtime/src/iree/hal/utils/CMakeLists.txt b/runtime/src/iree/hal/utils/CMakeLists.txt
index 3e84e67..cbfe14b 100644
--- a/runtime/src/iree/hal/utils/CMakeLists.txt
+++ b/runtime/src/iree/hal/utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/hal/utils/BUILD                                             #
+# runtime/src/iree/hal/utils/BUILD.bazel                                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/BUILD b/runtime/src/iree/modules/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/BUILD
rename to runtime/src/iree/modules/BUILD.bazel
diff --git a/runtime/src/iree/modules/CMakeLists.txt b/runtime/src/iree/modules/CMakeLists.txt
index a913b35..f4e8ad0 100644
--- a/runtime/src/iree/modules/CMakeLists.txt
+++ b/runtime/src/iree/modules/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/BUILD                                               #
+# runtime/src/iree/modules/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/check/BUILD b/runtime/src/iree/modules/check/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/check/BUILD
rename to runtime/src/iree/modules/check/BUILD.bazel
diff --git a/runtime/src/iree/modules/check/CMakeLists.txt b/runtime/src/iree/modules/check/CMakeLists.txt
index dfb25bc..a1fcc9b 100644
--- a/runtime/src/iree/modules/check/CMakeLists.txt
+++ b/runtime/src/iree/modules/check/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/check/BUILD                                         #
+# runtime/src/iree/modules/check/BUILD.bazel                                   #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/check/test/BUILD b/runtime/src/iree/modules/check/test/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/check/test/BUILD
rename to runtime/src/iree/modules/check/test/BUILD.bazel
diff --git a/runtime/src/iree/modules/check/test/CMakeLists.txt b/runtime/src/iree/modules/check/test/CMakeLists.txt
index 81e4f99..38e6945 100644
--- a/runtime/src/iree/modules/check/test/CMakeLists.txt
+++ b/runtime/src/iree/modules/check/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/check/test/BUILD                                    #
+# runtime/src/iree/modules/check/test/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/hal/BUILD b/runtime/src/iree/modules/hal/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/hal/BUILD
rename to runtime/src/iree/modules/hal/BUILD.bazel
diff --git a/runtime/src/iree/modules/hal/CMakeLists.txt b/runtime/src/iree/modules/hal/CMakeLists.txt
index 6e5e565..5ae6d60 100644
--- a/runtime/src/iree/modules/hal/CMakeLists.txt
+++ b/runtime/src/iree/modules/hal/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/hal/BUILD                                           #
+# runtime/src/iree/modules/hal/BUILD.bazel                                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/hal/inline/BUILD b/runtime/src/iree/modules/hal/inline/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/hal/inline/BUILD
rename to runtime/src/iree/modules/hal/inline/BUILD.bazel
diff --git a/runtime/src/iree/modules/hal/inline/CMakeLists.txt b/runtime/src/iree/modules/hal/inline/CMakeLists.txt
index 3d93ce1..61e3b35 100644
--- a/runtime/src/iree/modules/hal/inline/CMakeLists.txt
+++ b/runtime/src/iree/modules/hal/inline/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/hal/inline/BUILD                                    #
+# runtime/src/iree/modules/hal/inline/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/hal/loader/BUILD b/runtime/src/iree/modules/hal/loader/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/hal/loader/BUILD
rename to runtime/src/iree/modules/hal/loader/BUILD.bazel
diff --git a/runtime/src/iree/modules/hal/loader/CMakeLists.txt b/runtime/src/iree/modules/hal/loader/CMakeLists.txt
index fffb441..ace77f8 100644
--- a/runtime/src/iree/modules/hal/loader/CMakeLists.txt
+++ b/runtime/src/iree/modules/hal/loader/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/hal/loader/BUILD                                    #
+# runtime/src/iree/modules/hal/loader/BUILD.bazel                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/hal/utils/BUILD b/runtime/src/iree/modules/hal/utils/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/hal/utils/BUILD
rename to runtime/src/iree/modules/hal/utils/BUILD.bazel
diff --git a/runtime/src/iree/modules/hal/utils/CMakeLists.txt b/runtime/src/iree/modules/hal/utils/CMakeLists.txt
index d5cb3ff..df20e3f 100644
--- a/runtime/src/iree/modules/hal/utils/CMakeLists.txt
+++ b/runtime/src/iree/modules/hal/utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/modules/hal/utils/BUILD                                     #
+# runtime/src/iree/modules/hal/utils/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/modules/vmvx/BUILD b/runtime/src/iree/modules/vmvx/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/modules/vmvx/BUILD
rename to runtime/src/iree/modules/vmvx/BUILD.bazel
diff --git a/runtime/src/iree/runtime/demo/BUILD b/runtime/src/iree/runtime/demo/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/runtime/demo/BUILD
rename to runtime/src/iree/runtime/demo/BUILD.bazel
diff --git a/runtime/src/iree/runtime/testdata/BUILD b/runtime/src/iree/runtime/testdata/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/runtime/testdata/BUILD
rename to runtime/src/iree/runtime/testdata/BUILD.bazel
diff --git a/runtime/src/iree/runtime/testdata/CMakeLists.txt b/runtime/src/iree/runtime/testdata/CMakeLists.txt
index eb960f0..3d0390b 100644
--- a/runtime/src/iree/runtime/testdata/CMakeLists.txt
+++ b/runtime/src/iree/runtime/testdata/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/runtime/testdata/BUILD                                      #
+# runtime/src/iree/runtime/testdata/BUILD.bazel                                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/schemas/BUILD b/runtime/src/iree/schemas/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/schemas/BUILD
rename to runtime/src/iree/schemas/BUILD.bazel
diff --git a/runtime/src/iree/schemas/CMakeLists.txt b/runtime/src/iree/schemas/CMakeLists.txt
index 5e96962..ef93a2b 100644
--- a/runtime/src/iree/schemas/CMakeLists.txt
+++ b/runtime/src/iree/schemas/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/schemas/BUILD                                               #
+# runtime/src/iree/schemas/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/schemas/instruments/BUILD b/runtime/src/iree/schemas/instruments/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/schemas/instruments/BUILD
rename to runtime/src/iree/schemas/instruments/BUILD.bazel
diff --git a/runtime/src/iree/schemas/instruments/CMakeLists.txt b/runtime/src/iree/schemas/instruments/CMakeLists.txt
index 50370e7..0a35fda 100644
--- a/runtime/src/iree/schemas/instruments/CMakeLists.txt
+++ b/runtime/src/iree/schemas/instruments/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/schemas/instruments/BUILD                                   #
+# runtime/src/iree/schemas/instruments/BUILD.bazel                             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/task/BUILD b/runtime/src/iree/task/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/task/BUILD
rename to runtime/src/iree/task/BUILD.bazel
diff --git a/runtime/src/iree/task/CMakeLists.txt b/runtime/src/iree/task/CMakeLists.txt
index bf3895e..b66fc4b 100644
--- a/runtime/src/iree/task/CMakeLists.txt
+++ b/runtime/src/iree/task/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/task/BUILD                                                  #
+# runtime/src/iree/task/BUILD.bazel                                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/task/testing/BUILD b/runtime/src/iree/task/testing/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/task/testing/BUILD
rename to runtime/src/iree/task/testing/BUILD.bazel
diff --git a/runtime/src/iree/task/testing/CMakeLists.txt b/runtime/src/iree/task/testing/CMakeLists.txt
index 9dbd55d..c9c4c62 100644
--- a/runtime/src/iree/task/testing/CMakeLists.txt
+++ b/runtime/src/iree/task/testing/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/task/testing/BUILD                                          #
+# runtime/src/iree/task/testing/BUILD.bazel                                    #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/testing/BUILD b/runtime/src/iree/testing/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/testing/BUILD
rename to runtime/src/iree/testing/BUILD.bazel
diff --git a/runtime/src/iree/tooling/BUILD b/runtime/src/iree/tooling/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/tooling/BUILD
rename to runtime/src/iree/tooling/BUILD.bazel
diff --git a/runtime/src/iree/tooling/CMakeLists.txt b/runtime/src/iree/tooling/CMakeLists.txt
index 7e4c87e..2edaf8c 100644
--- a/runtime/src/iree/tooling/CMakeLists.txt
+++ b/runtime/src/iree/tooling/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/tooling/BUILD                                               #
+# runtime/src/iree/tooling/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/tooling/testdata/BUILD b/runtime/src/iree/tooling/testdata/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/tooling/testdata/BUILD
rename to runtime/src/iree/tooling/testdata/BUILD.bazel
diff --git a/runtime/src/iree/tooling/testdata/CMakeLists.txt b/runtime/src/iree/tooling/testdata/CMakeLists.txt
index 4d57fc3..5494e87 100644
--- a/runtime/src/iree/tooling/testdata/CMakeLists.txt
+++ b/runtime/src/iree/tooling/testdata/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/tooling/testdata/BUILD                                      #
+# runtime/src/iree/tooling/testdata/BUILD.bazel                                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/tooling/testdata/npy/BUILD b/runtime/src/iree/tooling/testdata/npy/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/tooling/testdata/npy/BUILD
rename to runtime/src/iree/tooling/testdata/npy/BUILD.bazel
diff --git a/runtime/src/iree/tooling/testdata/npy/CMakeLists.txt b/runtime/src/iree/tooling/testdata/npy/CMakeLists.txt
index b356b70..917a7c4 100644
--- a/runtime/src/iree/tooling/testdata/npy/CMakeLists.txt
+++ b/runtime/src/iree/tooling/testdata/npy/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/tooling/testdata/npy/BUILD                                  #
+# runtime/src/iree/tooling/testdata/npy/BUILD.bazel                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/vm/BUILD b/runtime/src/iree/vm/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/vm/BUILD
rename to runtime/src/iree/vm/BUILD.bazel
diff --git a/runtime/src/iree/vm/CMakeLists.txt b/runtime/src/iree/vm/CMakeLists.txt
index 48013b5..5ce8483 100644
--- a/runtime/src/iree/vm/CMakeLists.txt
+++ b/runtime/src/iree/vm/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/vm/BUILD                                                    #
+# runtime/src/iree/vm/BUILD.bazel                                              #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/vm/bytecode/BUILD b/runtime/src/iree/vm/bytecode/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/vm/bytecode/BUILD
rename to runtime/src/iree/vm/bytecode/BUILD.bazel
diff --git a/runtime/src/iree/vm/bytecode/CMakeLists.txt b/runtime/src/iree/vm/bytecode/CMakeLists.txt
index 08dc9b7..93c220b 100644
--- a/runtime/src/iree/vm/bytecode/CMakeLists.txt
+++ b/runtime/src/iree/vm/bytecode/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/vm/bytecode/BUILD                                           #
+# runtime/src/iree/vm/bytecode/BUILD.bazel                                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/vm/bytecode/utils/BUILD b/runtime/src/iree/vm/bytecode/utils/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/vm/bytecode/utils/BUILD
rename to runtime/src/iree/vm/bytecode/utils/BUILD.bazel
diff --git a/runtime/src/iree/vm/bytecode/utils/CMakeLists.txt b/runtime/src/iree/vm/bytecode/utils/CMakeLists.txt
index fa539dc..ecdfd1f 100644
--- a/runtime/src/iree/vm/bytecode/utils/CMakeLists.txt
+++ b/runtime/src/iree/vm/bytecode/utils/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/vm/bytecode/utils/BUILD                                     #
+# runtime/src/iree/vm/bytecode/utils/BUILD.bazel                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/vm/test/BUILD b/runtime/src/iree/vm/test/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/vm/test/BUILD
rename to runtime/src/iree/vm/test/BUILD.bazel
diff --git a/runtime/src/iree/vm/test/CMakeLists.txt b/runtime/src/iree/vm/test/CMakeLists.txt
index 15b26d4..8a55244 100644
--- a/runtime/src/iree/vm/test/CMakeLists.txt
+++ b/runtime/src/iree/vm/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# runtime/src/iree/vm/test/BUILD                                               #
+# runtime/src/iree/vm/test/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/runtime/src/iree/vm/test/emitc/BUILD b/runtime/src/iree/vm/test/emitc/BUILD.bazel
similarity index 100%
rename from runtime/src/iree/vm/test/emitc/BUILD
rename to runtime/src/iree/vm/test/emitc/BUILD.bazel
diff --git a/samples/BUILD b/samples/BUILD.bazel
similarity index 100%
rename from samples/BUILD
rename to samples/BUILD.bazel
diff --git a/samples/emitc_modules/BUILD b/samples/emitc_modules/BUILD.bazel
similarity index 100%
rename from samples/emitc_modules/BUILD
rename to samples/emitc_modules/BUILD.bazel
diff --git a/samples/simple_embedding/BUILD b/samples/simple_embedding/BUILD.bazel
similarity index 100%
rename from samples/simple_embedding/BUILD
rename to samples/simple_embedding/BUILD.bazel
diff --git a/samples/simple_embedding/CMakeLists.txt b/samples/simple_embedding/CMakeLists.txt
index 8eea77c..c2e3980 100644
--- a/samples/simple_embedding/CMakeLists.txt
+++ b/samples/simple_embedding/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# samples/simple_embedding/BUILD                                               #
+# samples/simple_embedding/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/BUILD b/tests/BUILD.bazel
similarity index 100%
rename from tests/BUILD
rename to tests/BUILD.bazel
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 8cf14d4..4f1641d 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/BUILD                                                                  #
+# tests/BUILD.bazel                                                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/compiler_driver/BUILD b/tests/compiler_driver/BUILD.bazel
similarity index 100%
rename from tests/compiler_driver/BUILD
rename to tests/compiler_driver/BUILD.bazel
diff --git a/tests/compiler_driver/CMakeLists.txt b/tests/compiler_driver/CMakeLists.txt
index 676ded9..f53008b 100644
--- a/tests/compiler_driver/CMakeLists.txt
+++ b/tests/compiler_driver/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/compiler_driver/BUILD                                                  #
+# tests/compiler_driver/BUILD.bazel                                            #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/BUILD b/tests/e2e/BUILD.bazel
similarity index 100%
rename from tests/e2e/BUILD
rename to tests/e2e/BUILD.bazel
diff --git a/tests/e2e/CMakeLists.txt b/tests/e2e/CMakeLists.txt
index 91706ed..639cd51 100644
--- a/tests/e2e/CMakeLists.txt
+++ b/tests/e2e/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/BUILD                                                              #
+# tests/e2e/BUILD.bazel                                                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/linalg/BUILD b/tests/e2e/linalg/BUILD.bazel
similarity index 100%
rename from tests/e2e/linalg/BUILD
rename to tests/e2e/linalg/BUILD.bazel
diff --git a/tests/e2e/linalg/CMakeLists.txt b/tests/e2e/linalg/CMakeLists.txt
index 51b4681..b556e16 100644
--- a/tests/e2e/linalg/CMakeLists.txt
+++ b/tests/e2e/linalg/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/linalg/BUILD                                                       #
+# tests/e2e/linalg/BUILD.bazel                                                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/linalg_ext_ops/BUILD b/tests/e2e/linalg_ext_ops/BUILD.bazel
similarity index 100%
rename from tests/e2e/linalg_ext_ops/BUILD
rename to tests/e2e/linalg_ext_ops/BUILD.bazel
diff --git a/tests/e2e/linalg_ext_ops/CMakeLists.txt b/tests/e2e/linalg_ext_ops/CMakeLists.txt
index 26d2d0b..4645be9 100644
--- a/tests/e2e/linalg_ext_ops/CMakeLists.txt
+++ b/tests/e2e/linalg_ext_ops/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/linalg_ext_ops/BUILD                                               #
+# tests/e2e/linalg_ext_ops/BUILD.bazel                                         #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/linalg_transform/BUILD b/tests/e2e/linalg_transform/BUILD.bazel
similarity index 100%
rename from tests/e2e/linalg_transform/BUILD
rename to tests/e2e/linalg_transform/BUILD.bazel
diff --git a/tests/e2e/linalg_transform/CMakeLists.txt b/tests/e2e/linalg_transform/CMakeLists.txt
index 8045f0f..38c6124 100644
--- a/tests/e2e/linalg_transform/CMakeLists.txt
+++ b/tests/e2e/linalg_transform/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/linalg_transform/BUILD                                             #
+# tests/e2e/linalg_transform/BUILD.bazel                                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/matmul/BUILD b/tests/e2e/matmul/BUILD.bazel
similarity index 100%
rename from tests/e2e/matmul/BUILD
rename to tests/e2e/matmul/BUILD.bazel
diff --git a/tests/e2e/matmul/CMakeLists.txt b/tests/e2e/matmul/CMakeLists.txt
index 3e4051f..29953c7 100644
--- a/tests/e2e/matmul/CMakeLists.txt
+++ b/tests/e2e/matmul/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/matmul/BUILD                                                       #
+# tests/e2e/matmul/BUILD.bazel                                                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/models/BUILD b/tests/e2e/models/BUILD.bazel
similarity index 100%
rename from tests/e2e/models/BUILD
rename to tests/e2e/models/BUILD.bazel
diff --git a/tests/e2e/models/CMakeLists.txt b/tests/e2e/models/CMakeLists.txt
index 6a6ca03..5984902 100644
--- a/tests/e2e/models/CMakeLists.txt
+++ b/tests/e2e/models/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/models/BUILD                                                       #
+# tests/e2e/models/BUILD.bazel                                                 #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/regression/BUILD b/tests/e2e/regression/BUILD.bazel
similarity index 100%
rename from tests/e2e/regression/BUILD
rename to tests/e2e/regression/BUILD.bazel
diff --git a/tests/e2e/regression/CMakeLists.txt b/tests/e2e/regression/CMakeLists.txt
index 6c7ea4d..2154feb 100644
--- a/tests/e2e/regression/CMakeLists.txt
+++ b/tests/e2e/regression/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/regression/BUILD                                                   #
+# tests/e2e/regression/BUILD.bazel                                             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/tensor_ops/BUILD b/tests/e2e/tensor_ops/BUILD.bazel
similarity index 100%
rename from tests/e2e/tensor_ops/BUILD
rename to tests/e2e/tensor_ops/BUILD.bazel
diff --git a/tests/e2e/tensor_ops/CMakeLists.txt b/tests/e2e/tensor_ops/CMakeLists.txt
index 312500a..bcf6f6a 100644
--- a/tests/e2e/tensor_ops/CMakeLists.txt
+++ b/tests/e2e/tensor_ops/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/tensor_ops/BUILD                                                   #
+# tests/e2e/tensor_ops/BUILD.bazel                                             #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/tosa_ops/BUILD b/tests/e2e/tosa_ops/BUILD.bazel
similarity index 100%
rename from tests/e2e/tosa_ops/BUILD
rename to tests/e2e/tosa_ops/BUILD.bazel
diff --git a/tests/e2e/tosa_ops/CMakeLists.txt b/tests/e2e/tosa_ops/CMakeLists.txt
index 88272b6..11340a5 100644
--- a/tests/e2e/tosa_ops/CMakeLists.txt
+++ b/tests/e2e/tosa_ops/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/tosa_ops/BUILD                                                     #
+# tests/e2e/tosa_ops/BUILD.bazel                                               #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/vulkan_specific/BUILD b/tests/e2e/vulkan_specific/BUILD.bazel
similarity index 100%
rename from tests/e2e/vulkan_specific/BUILD
rename to tests/e2e/vulkan_specific/BUILD.bazel
diff --git a/tests/e2e/vulkan_specific/CMakeLists.txt b/tests/e2e/vulkan_specific/CMakeLists.txt
index 36ccaa1..a0a5578 100644
--- a/tests/e2e/vulkan_specific/CMakeLists.txt
+++ b/tests/e2e/vulkan_specific/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/vulkan_specific/BUILD                                              #
+# tests/e2e/vulkan_specific/BUILD.bazel                                        #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/e2e/xla_ops/BUILD b/tests/e2e/xla_ops/BUILD.bazel
similarity index 100%
rename from tests/e2e/xla_ops/BUILD
rename to tests/e2e/xla_ops/BUILD.bazel
diff --git a/tests/e2e/xla_ops/CMakeLists.txt b/tests/e2e/xla_ops/CMakeLists.txt
index a1eede6..1399a97 100644
--- a/tests/e2e/xla_ops/CMakeLists.txt
+++ b/tests/e2e/xla_ops/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/e2e/xla_ops/BUILD                                                      #
+# tests/e2e/xla_ops/BUILD.bazel                                                #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/transform_dialect/BUILD b/tests/transform_dialect/BUILD.bazel
similarity index 100%
rename from tests/transform_dialect/BUILD
rename to tests/transform_dialect/BUILD.bazel
diff --git a/tests/transform_dialect/CMakeLists.txt b/tests/transform_dialect/CMakeLists.txt
index e8a00a7..0bae2d5 100644
--- a/tests/transform_dialect/CMakeLists.txt
+++ b/tests/transform_dialect/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/transform_dialect/BUILD                                                #
+# tests/transform_dialect/BUILD.bazel                                          #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/transform_dialect/cpu/BUILD b/tests/transform_dialect/cpu/BUILD.bazel
similarity index 100%
rename from tests/transform_dialect/cpu/BUILD
rename to tests/transform_dialect/cpu/BUILD.bazel
diff --git a/tests/transform_dialect/cpu/CMakeLists.txt b/tests/transform_dialect/cpu/CMakeLists.txt
index 1de40c1..46dbbb5 100644
--- a/tests/transform_dialect/cpu/CMakeLists.txt
+++ b/tests/transform_dialect/cpu/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/transform_dialect/cpu/BUILD                                            #
+# tests/transform_dialect/cpu/BUILD.bazel                                      #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tests/transform_dialect/cuda/BUILD b/tests/transform_dialect/cuda/BUILD.bazel
similarity index 100%
rename from tests/transform_dialect/cuda/BUILD
rename to tests/transform_dialect/cuda/BUILD.bazel
diff --git a/tests/transform_dialect/cuda/CMakeLists.txt b/tests/transform_dialect/cuda/CMakeLists.txt
index 7525612..80c4076 100644
--- a/tests/transform_dialect/cuda/CMakeLists.txt
+++ b/tests/transform_dialect/cuda/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tests/transform_dialect/cuda/BUILD                                           #
+# tests/transform_dialect/cuda/BUILD.bazel                                     #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #
diff --git a/tools/BUILD b/tools/BUILD.bazel
similarity index 100%
rename from tools/BUILD
rename to tools/BUILD.bazel
diff --git a/tools/test/BUILD b/tools/test/BUILD.bazel
similarity index 100%
rename from tools/test/BUILD
rename to tools/test/BUILD.bazel
diff --git a/tools/test/CMakeLists.txt b/tools/test/CMakeLists.txt
index ef9f297..faa6e3a 100644
--- a/tools/test/CMakeLists.txt
+++ b/tools/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 ################################################################################
 # Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from           #
-# tools/test/BUILD                                                             #
+# tools/test/BUILD.bazel                                                       #
 #                                                                              #
 # Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary   #
 # CMake-only content.                                                          #