def _build_bazel_cmd()

in tools/eclipse/project.py [0:0]


def _build_bazel_cmd(*args):
  cmd = [bazel_exe]
  if batch_option:
    cmd.append('--batch')
  for arg in args:
    cmd.append(arg)
  return cmd