forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
54 lines (45 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright 2019 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
files(
name = '3rdparty_directory',
sources = ['3rdparty/**/*'],
)
# 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',
sources = ["BUILD_ROOT"],
)
files(
name = 'build_tools',
sources = ['BUILD.tools'],
dependencies = [
':scalajs_3rdparty_directory',
],
)
files(
name = 'gitignore',
sources = ['.gitignore'],
)
files(
name = 'isort_cfg',
sources = ['.isort.cfg'],
)
files(
name = 'scalajs_3rdparty_directory',
sources = ['contrib/scalajs/3rdparty/**/*'],
)
files(
name = 'pants_toml',
sources = ['pants.toml'],
)
files(
name = 'pyproject',
sources = ['pyproject.toml'],
)
# 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',
sources = ['pants.pex'],
)