core.workflow( name = "default", origin = git.origin( url = "https://github.com/llvm/llvm-project.git", ref = "main", ), origin_files = glob( [ "compiler-rt/lib/scudo/standalone/**", "compiler-rt/LICENSE.TXT", ], exclude = [ "**/CMakeLists.txt", ], ), destination = git.gerrit_destination( url = "https://android.googlesource.com/platform/external/scudo", fetch = "master", ), destination_files = glob( [ "standalone/**", "LICENSE.TXT", ], exclude = [ "**/Android.bp" ], ), authoring = authoring.pass_thru( "Dynamic Tools Team " ), mode = 'ITERATIVE', transformations = [ core.move("compiler-rt/lib/scudo/standalone/", "standalone"), core.move("compiler-rt/LICENSE.TXT", "LICENSE.TXT"), ], )