forked from JetBrains/hirschgarten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacos.bazelproject
62 lines (52 loc) · 2.04 KB
/
macos.bazelproject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
####################################
# BAZEL PROJECT CONFIGURATION FILE #
####################################
# Import another project view.
#
# Example:
# import path/to/another/projectview.bazelproject
# List of bazel target expressions, supporting `/...` notation.
# e.g. `-//executioncontext/projectview/src/main/java/org/jetbrains/bsp/bazel/projectview/parser/...`).
#
# Example:
# targets:
# //install/src/main/java/org/jetbrains/bsp/bazel/install
# //executioncontext/projectview/...
# -//executioncontext/projectview/src/main/java/org/jetbrains/bsp/bazel/projectview/parser/...
targets:
//...
-//tools/platforms/...
# Path to bazel which will be used to invoke bazel from the server (e.g. to build a project, or query bazel).
#
# Example:
# bazel_binary: /usr/local/bin/bazel
#
# Default: The server will deduct bazel path from `$PATH`
# List of directories to be mapped into bazel targets.
#
# You can use negative directories to have server ignore certain directories (
# e.g. `-executioncontext/projectview/src/main/java/org/jetbrains/bsp/bazel/projectview/parser/...`).
#
# Example:
# directories:
# install/src/main/java/org/jetbrains/bsp/bazel/install
# executioncontext/projectview/
# -executioncontext/projectview/src/main/java/org/jetbrains/bsp/bazel/projectview/parser
#
# directories:
# .
# Flag specifying if targets should be derived from list of directories in directories section.
derive_targets_from_directories: false
# How many levels of bazel targets dependencies should be imported as modules.
# Only the targets that are present in workspace are imported.
# You can use negative value to import all transitive dependencies.
import_depth: 0
# A set of bazel flags added to **all** bazel command invocations.
#
# Example:
# build_flags:
# --define=ij_product=intellij-latest
build_flags:
# Flag specifying if targets with `manual` tag should be built.
allow_manual_targets_sync: false
# For more information on these options, see https://github.com/JetBrains/hirschgarten/blob/main/server/executioncontext/projectview/README.md