forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
31 lines (26 loc) · 749 Bytes
/
BUILD
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
# Copyright 2019 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
# We use this to establish the build root, rather than `./pants`, because we cannot safely use the
# latter as the sentinel filename per https://github.com/pantsbuild/pants/pull/8105.
files(
name = 'build_root',
source = "BUILD_ROOT",
)
files(
name = 'build_tools',
source = 'BUILD.tools',
)
files(
name = '3rdparty_build',
source = '3rdparty/BUILD',
)
files(
name = 'pants_ini',
source = 'pants.ini',
)
# NB: This is used for integration tests. This is generated automatically via `./pants` and
# `build-support/bin/bootstrap_pants_pex.sh`.
files(
name = 'pants_pex',
source = 'pants.pex',
)