Support to build openstack related apps using Bazel

Change-Id: Ibc9f43a8fd92bb41b162a88a1eb3e8c8c5ad990a
diff --git a/web/gui/BUILD b/web/gui/BUILD
index b23bf94..72e280b 100644
--- a/web/gui/BUILD
+++ b/web/gui/BUILD
@@ -150,16 +150,19 @@
 
 genrule(
     name = "_web_app_all",
-    srcs =  glob([
-                   "src/main/webapp/**",
-                   "src/main/webapp/app/**/*.js",
-               ], exclude = [
-                   "src/main/webapp/tests/**",
-                   "src/main/webapp/node_modules/**",
-                   "src/main/webapp/dist/**",
-                   "src/main/webapp/vendor/**",
-                   "src/main/webapp/npm-debug.log",
-               ]),
+    srcs = glob(
+        [
+            "src/main/webapp/**",
+            "src/main/webapp/app/**/*.js",
+        ],
+        exclude = [
+            "src/main/webapp/tests/**",
+            "src/main/webapp/node_modules/**",
+            "src/main/webapp/dist/**",
+            "src/main/webapp/vendor/**",
+            "src/main/webapp/npm-debug.log",
+        ],
+    ),
     outs = ["web_app_all.jar"],
     cmd = "cd web/gui &&" +
           " find src/main/webapp -type f -exec touch -t 201806280000 {} \; &&" +