aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-03-22 08:47:26 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-03-23 12:16:19 +0000
commitebd386280db58e1f303cbd07533a03c30820da28 (patch)
tree9e7f279af59059ff913bcd684e1deae0c76eba38 /BUILD
parentd52124539a4c1b62b9a144bd66f0485aac28b8fa (diff)
Exclude out/** from the source glob.
This directory is used by IntelliJ if scripts/setup-intellij.sh is used to generate the .iml file. -- MOS_MIGRATED_REVID=117801566
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/BUILD b/BUILD
index 6a7333e24a..3852863b59 100644
--- a/BUILD
+++ b/BUILD
@@ -21,9 +21,10 @@ filegroup(
srcs = glob(
["**"],
exclude = [
- "bazel-*/**",
- "output/**",
- ".*/**",
+ "bazel-*/**", # convenience symlinks
+ "out/**" # IntelliJ with setup-intellij.sh
+ "output/**", # output of compile.sh
+ ".*/**", # mainly git
],
) + [
"//examples:srcs",