1core.workflow(
2    name = "default",
3    origin = git.origin(
4        url = "https://github.com/llvm/llvm-project.git",
5        ref = "main",
6    ),
7    origin_files = glob(
8        [
9            "compiler-rt/lib/scudo/standalone/**",
10            "compiler-rt/LICENSE.TXT",
11        ],
12        exclude = [
13            "**/CMakeLists.txt",
14        ],
15    ),
16    destination = git.gerrit_destination(
17        url = "https://android.googlesource.com/platform/external/scudo",
18        fetch = "master",
19    ),
20    destination_files = glob(
21        [
22            "standalone/**",
23            "LICENSE.TXT",
24        ],
25        exclude = [
26            "**/Android.bp"
27        ],
28    ),
29    authoring = authoring.pass_thru(
30        "Dynamic Tools Team <dynamic-tools@google.com>"
31    ),
32    mode = 'ITERATIVE',
33    transformations = [
34        core.move("compiler-rt/lib/scudo/standalone/", "standalone"),
35        core.move("compiler-rt/LICENSE.TXT", "LICENSE.TXT"),
36    ],
37)
38