Fix Bazel build script generation

Change-Id: I460cf3e47582658a1ee03b769a1ad47426630dcb
Signed-off-by: Jakub Sujak <jakub.sujak@arm.com>
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10394
Benchmark: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: <felixjohnny.thomasmathibalan@arm.com>
Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/scripts/generate_build_files.py b/scripts/generate_build_files.py
index 61da7f2..17cf49c 100644
--- a/scripts/generate_build_files.py
+++ b/scripts/generate_build_files.py
@@ -202,8 +202,6 @@
     # Common backend files
     lib_files = filelist['common']
 
-    # TODO Add Fixed format GEMM kernels ?
-
     # Logging files
     lib_files += filelist['logging']
 
@@ -278,6 +276,9 @@
     graph_files, lib_files_sve, lib_files_sve2, lib_files = gather_sources()
 
     if args.bazel:
+        # 8562a4ec: Remove CommonGraphOptions from Utils target and warnings
+        graph_files += ["//utils:CommonGraphOptions.cpp"]
+
         bazel_build_string = build_from_template_bazel(
             graph_files, lib_files_sve, lib_files_sve2, lib_files)
         with open("src/BUILD.bazel", "w") as fp: