[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / utils / gn / .gn
blob4eccc2fc168c0afb0b3779ca2816b9883dffb9ab
1 # Since this can't be at the toplevel, you either need to pass
2 # `--dotfile=llvm/utils/gn/.gn --root=.` to the `gn gen` command
3 # or use llvm/utils/gn/gn.py which calls gn with these two flags added.
5 buildconfig = "//llvm/utils/gn/build/BUILDCONFIG.gn"
7 # Disallow all calls to exec_script. We should be very conservative about
8 # whitelisting things here.
9 exec_script_whitelist = []
11 # Execute action() targets using Python 3.
12 script_executable = "python3"
14 # The normal GN setup is to have BUILD.gn files in-tree and a root BUILD.gn
15 # file.  Since LLVM's GN build is unofficial, set secondary_source to tell GN
16 # that e.g. llvm/lib/Demangle/BUILD.gn is found at
17 # llvm/utils/gn/secondary/llvm/lib/Demangle/BUILD.gn and that the root BUILD.gn
18 # file is at llvm/utils/gn/secondary/BUILD.gn
19 secondary_source = "//llvm/utils/gn/secondary/"