diff options
author | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /build/plugins/build_mn_files.py | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) |
Revert ymake build from ydb oss export
Diffstat (limited to 'build/plugins/build_mn_files.py')
-rw-r--r-- | build/plugins/build_mn_files.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/build/plugins/build_mn_files.py b/build/plugins/build_mn_files.py deleted file mode 100644 index 4da76f18528..00000000000 --- a/build/plugins/build_mn_files.py +++ /dev/null @@ -1,29 +0,0 @@ -from os.path import basename, splitext - - -def on_build_mns_files(unit, *args): - files = [] - name = '' - ranking_suffix = '' - check = '' - index = 0 - fml_unused_tool = '' - while index < len(args): - if args[index] == 'NAME': - index += 1 - name = args[index] - elif args[index] == 'RANKING_SUFFIX': - index += 1 - ranking_suffix = args[index] - elif args[index] == 'CHECK': - check = 'CHECK' - fml_unused_tool = unit.get('FML_UNUSED_TOOL') or '$FML_UNUSED_TOOL' - else: - files.append(args[index]) - index += 1 - - for filename in files: - file_basename, _ = splitext(basename(filename)) - asmdataname = "staticMn{0}{1}Ptr".format(ranking_suffix, file_basename) - output_name = 'mn.staticMn{0}{1}Ptr.cpp'.format(ranking_suffix, file_basename) - unit.on_build_mns_file([filename, name, output_name, ranking_suffix, check, fml_unused_tool, asmdataname]) |