Skip to content

Commit 40b58a4

Browse files
authored
Merge pull request #12017 from ydb-platform/mergelibs-241126-1510
Library import 241126-1510
2 parents f4d6825 + deada87 commit 40b58a4

File tree

2,805 files changed

+72488
-14732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,805 files changed

+72488
-14732
lines changed

build/conf/compilers/gnu_compiler.conf

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,17 +225,22 @@ _C_CPP_KV_STYLE_NEW=${hide;kv:_C_CPP_KV_STYLE_P} ${hide;kv:_C_CPP_KV_STYLE_PC}
225225
_C_CPP_KV_STYLE_P=p CC
226226
_C_CPP_KV_STYLE_PC=pc green
227227

228-
_C_CPP_WRAPPER=$YMAKE_PYTHON3 ${input:"build/scripts/wrapcc.py"} ${input:SRC}
229-
when ($CLANG_TIDY_ARGS || $RETRY_ARGS || $YNDEXER_ARGS || $OPENSOURCE == "yes" || $RAW_COMPILE_CPP_CMD == "yes" ) {
228+
# --wrapcc-end argument must be the last one
229+
_C_CPP_WRAPPER=$YMAKE_PYTHON3 ${input:"build/scripts/wrapcc.py"} \
230+
--source-file ${input:SRC} \
231+
--source-root ${ARCADIA_ROOT} \
232+
--wrapcc-end
233+
234+
when ($CLANG_TIDY_ARGS || $OPENSOURCE == "yes" || $RAW_COMPILE_CPP_CMD == "yes" ) {
230235
_C_CPP_WRAPPER=
231236
}
232237

233238
_CPP_ARGS_NEW=\
234239
$CLANG_STATIC_ANALYZER_OPTIONS_NEW && \
235240
$CLANG_TIDY_ARGS \
241+
$_C_CPP_WRAPPER \
236242
$YNDEXER_ARGS \
237243
$RETRY_ARGS \
238-
$_C_CPP_WRAPPER \
239244
$CXX_COMPILER \
240245
$C_FLAGS_PLATFORM \
241246
$GCC_COMPILE_FLAGS \
@@ -254,9 +259,9 @@ _CPP_ARGS_NEW=\
254259

255260
_C_ARGS_NEW=\
256261
$CLANG_TIDY_ARGS \
262+
$_C_CPP_WRAPPER \
257263
$YNDEXER_ARGS \
258264
$RETRY_ARGS \
259-
$_C_CPP_WRAPPER \
260265
$C_COMPILER \
261266
$C_FLAGS_PLATFORM \
262267
$GCC_COMPILE_FLAGS \

build/conf/proto.conf

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,6 @@ JAVA_PROTO_LIBRARY_SEM=$BUILD_PROTO_JAR_SEM $_GRADLE_EXPORT_PUBLISHING_SEM
657657

658658
module _CPP_PROTO : LIBRARY {
659659
.ALLOWED=_EXPOSE LIST_PROTO
660-
# TODO(svidyuk): think about marker which forces semantics inheritance
661-
.SEM=CPP_PROTO_LIBRARY_SEM
662660
FORCE_COVERAGE_DISABLED=yes
663661
ENABLE(CPP_PROTO)
664662
ENABLE(GEN_PROTO)
@@ -682,7 +680,6 @@ module _CPP_PROTO : LIBRARY {
682680
module _JAVA_PROTO: EXTERNAL_JAVA_LIBRARY {
683681
.EXTS=.jsrc
684682
.ALLOWED=GRPC
685-
.SEM=JAVA_PROTO_LIBRARY_SEM
686683
SET(PEERDIR_TAGS JAVA)
687684
ENABLE(JAVA_PROTO)
688685
DISABLE(_NEED_SBOM_INFO)
@@ -708,7 +705,6 @@ module _JAVA_PROTO: EXTERNAL_JAVA_LIBRARY {
708705
module _PY_PROTO: PY2_LIBRARY {
709706
.ALIASES=SRCS=PY_SRCS
710707
.ALLOWED=OPTIMIZE_PY_PROTOS NO_OPTIMIZE_PY_PROTOS
711-
.SEM=IGNORED
712708
SET(PEERDIR_TAGS PY2)
713709
ENABLE(PY_PROTO)
714710
DISABLE(_NEED_SBOM_INFO)
@@ -732,7 +728,6 @@ module _PY_PROTO: PY2_LIBRARY {
732728
module _PY3_PROTO: PY3_LIBRARY {
733729
.ALIASES=SRCS=PY_SRCS
734730
.ALLOWED=OPTIMIZE_PY_PROTOS NO_OPTIMIZE_PY_PROTOS
735-
.SEM=IGNORED
736731
SET(PEERDIR_TAGS PY3)
737732
ENABLE(PY3_PROTO)
738733
DISABLE(_NEED_SBOM_INFO)
@@ -755,7 +750,6 @@ module _PY3_PROTO: PY3_LIBRARY {
755750

756751
module _GO_PROTO: GO_LIBRARY {
757752
.IGNORED=GENERATE_ENUM_SERIALIZATION GENERATE_ENUM_SERIALIZATION_WITH_HEADER YMAPS_SPROTO
758-
.SEM=IGNORED
759753
SET(PEERDIR_TAGS GO)
760754
ENABLE(GO_PROTO)
761755

@@ -782,7 +776,6 @@ module _TS_PREPARE_DEPS: _PREPARE_DEPS_BASE {
782776

783777
module _DESC_PROTO: _BARE_UNIT {
784778
.CMD=_PROTO_DESC_MERGE_CMD
785-
.SEM=IGNORED
786779
.EXTS=.desc .rawproto
787780
.NODE_TYPE=Library
788781
.IGNORED=GENERATE_ENUM_SERIALIZATION GENERATE_ENUM_SERIALIZATION_WITH_HEADER YMAPS_SPROTO RESOURCE GO_PROTO_PLUGIN GRPC
@@ -831,24 +824,30 @@ module _DESC_PROTO: _BARE_UNIT {
831824
### See: [GRPC()](#macro_GRPC), [OPTIMIZE_PY_PROTOS()](#macro_OPTIMIZE_PY_PROTOS), [INCLUDE_TAGS()](#macro_INCLUDE_TAGS), [EXCLUDE_TAGS()](#macro_EXCLUDE_TAGS)
832825
multimodule PROTO_LIBRARY {
833826
module CPP_PROTO: _CPP_PROTO {
827+
# TODO(svidyuk): think about marker which forces semantics inheritance
828+
.SEM=CPP_PROTO_LIBRARY_SEM
834829
SET_APPEND(PEERDIR_TAGS CPP_PROTO)
835830
}
836831

837832
module JAVA_PROTO: _JAVA_PROTO {
833+
.SEM=JAVA_PROTO_LIBRARY_SEM
838834
SET_APPEND(PEERDIR_TAGS JAVA_PROTO)
839835
}
840836

841837
module PY_PROTO: _PY_PROTO {
838+
.SEM=IGNORED
842839
SET_APPEND(PEERDIR_TAGS PY_PROTO)
843840
.PEERDIRSELF=CPP_PROTO
844841
}
845842

846843
module PY3_PROTO: _PY3_PROTO {
844+
.SEM=IGNORED
847845
SET_APPEND(PEERDIR_TAGS PY3_PROTO)
848846
.PEERDIRSELF=CPP_PROTO
849847
}
850848

851849
module GO_PROTO: _GO_PROTO {
850+
.SEM=IGNORED
852851
SET_APPEND(PEERDIR_TAGS GO_PROTO)
853852
}
854853

@@ -867,6 +866,7 @@ multimodule PROTO_LIBRARY {
867866
}
868867

869868
module DESC_PROTO: _DESC_PROTO {
869+
.SEM=IGNORED
870870
SET_APPEND(PEERDIR_TAGS DESC_PROTO)
871871
}
872872
}
@@ -902,28 +902,34 @@ module PROTO_REGISTRY: PROTO_DESCRIPTIONS {
902902
### See: [PROTO_LIBRARY()](#module_PROTO_LIBRARY)
903903
multimodule PROTO_SCHEMA {
904904
module CPP_PROTO_FROM_SCHEMA: _CPP_PROTO {
905+
# TODO(svidyuk): think about marker which forces semantics inheritance
906+
.SEM=CPP_PROTO_LIBRARY_SEM
905907
DISABLE(START_TARGET)
906908
SET_APPEND(PEERDIR_TAGS CPP_PROTO CPP_PROTO_FROM_SCHEMA)
907909
}
908910

909911
module JAVA_PROTO_FROM_SCHEMA: _JAVA_PROTO {
912+
.SEM=JAVA_PROTO_LIBRARY_SEM
910913
DISABLE(START_TARGET)
911914
SET_APPEND(PEERDIR_TAGS JAVA_PROTO JAVA_PROTO_FROM_SCHEMA)
912915
}
913916

914917
module PY_PROTO_FROM_SCHEMA: _PY_PROTO {
918+
.SEM=IGNORED
915919
.PEERDIRSELF=CPP_PROTO_FROM_SCHEMA
916920
DISABLE(START_TARGET)
917921
SET_APPEND(PEERDIR_TAGS PY_PROTO PY_PROTO_FROM_SCHEMA)
918922
}
919923

920924
module PY3_PROTO_FROM_SCHEMA: _PY3_PROTO {
925+
.SEM=IGNORED
921926
.PEERDIRSELF=CPP_PROTO_FROM_SCHEMA
922927
DISABLE(START_TARGET)
923928
SET_APPEND(PEERDIR_TAGS PY3_PROTO PY3_PROTO_FROM_SCHEMA)
924929
}
925930

926931
module GO_PROTO_FROM_SCHEMA: _GO_PROTO {
932+
.SEM=IGNORED
927933
DISABLE(START_TARGET)
928934
SET_APPEND(PEERDIR_TAGS GO_PROTO GO_PROTO_FROM_SCHEMA)
929935
}
@@ -945,6 +951,7 @@ multimodule PROTO_SCHEMA {
945951
}
946952

947953
module DESC_PROTO_FROM_SCHEMA: _DESC_PROTO {
954+
.SEM=IGNORED
948955
DISABLE(START_TARGET)
949956
SET_APPEND(PEERDIR_TAGS DESC_PROTO DESC_PROTO_FROM_SCHEMA)
950957
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"by_platform": {
33
"darwin": {
4-
"uri": "sbr:7478218557"
4+
"uri": "sbr:7522713648"
55
},
66
"darwin-arm64": {
7-
"uri": "sbr:7478218228"
7+
"uri": "sbr:7522713246"
88
},
99
"linux": {
10-
"uri": "sbr:7478219259"
10+
"uri": "sbr:7522714449"
1111
},
1212
"linux-aarch64": {
13-
"uri": "sbr:7478218007"
13+
"uri": "sbr:7522712750"
1414
},
1515
"win32-clang-cl": {
16-
"uri": "sbr:7478218861"
16+
"uri": "sbr:7522714072"
1717
}
1818
}
1919
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"by_platform": {
33
"darwin": {
4-
"uri": "sbr:7478217383"
4+
"uri": "sbr:7522728679"
55
},
66
"darwin-arm64": {
7-
"uri": "sbr:7478216869"
7+
"uri": "sbr:7522728262"
88
},
99
"linux": {
10-
"uri": "sbr:7478218277"
10+
"uri": "sbr:7522729575"
1111
},
1212
"linux-aarch64": {
13-
"uri": "sbr:7478216503"
13+
"uri": "sbr:7522727825"
1414
},
1515
"win32-clang-cl": {
16-
"uri": "sbr:7478218014"
16+
"uri": "sbr:7522729138"
1717
}
1818
}
1919
}

build/mapping.conf.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@
448448
"7434972788": "https://devtools-registry.s3.yandex.net/7434972788",
449449
"7480257071": "https://devtools-registry.s3.yandex.net/7480257071",
450450
"7480276291": "https://devtools-registry.s3.yandex.net/7480276291",
451+
"7537937986": "https://devtools-registry.s3.yandex.net/7537937986",
452+
"7538005601": "https://devtools-registry.s3.yandex.net/7538005601",
451453
"5486731632": "https://devtools-registry.s3.yandex.net/5486731632",
452454
"5514350352": "https://devtools-registry.s3.yandex.net/5514350352",
453455
"5514360398": "https://devtools-registry.s3.yandex.net/5514360398",
@@ -616,6 +618,7 @@
616618
"7431156616": "https://devtools-registry.s3.yandex.net/7431156616",
617619
"7448914799": "https://devtools-registry.s3.yandex.net/7448914799",
618620
"7478218557": "https://devtools-registry.s3.yandex.net/7478218557",
621+
"7522713648": "https://devtools-registry.s3.yandex.net/7522713648",
619622
"5766171800": "https://devtools-registry.s3.yandex.net/5766171800",
620623
"5805430761": "https://devtools-registry.s3.yandex.net/5805430761",
621624
"5829025456": "https://devtools-registry.s3.yandex.net/5829025456",
@@ -668,6 +671,7 @@
668671
"7431156019": "https://devtools-registry.s3.yandex.net/7431156019",
669672
"7448913101": "https://devtools-registry.s3.yandex.net/7448913101",
670673
"7478218228": "https://devtools-registry.s3.yandex.net/7478218228",
674+
"7522713246": "https://devtools-registry.s3.yandex.net/7522713246",
671675
"5766173070": "https://devtools-registry.s3.yandex.net/5766173070",
672676
"5805432830": "https://devtools-registry.s3.yandex.net/5805432830",
673677
"5829031598": "https://devtools-registry.s3.yandex.net/5829031598",
@@ -720,6 +724,7 @@
720724
"7431157902": "https://devtools-registry.s3.yandex.net/7431157902",
721725
"7448917907": "https://devtools-registry.s3.yandex.net/7448917907",
722726
"7478219259": "https://devtools-registry.s3.yandex.net/7478219259",
727+
"7522714449": "https://devtools-registry.s3.yandex.net/7522714449",
723728
"5766171341": "https://devtools-registry.s3.yandex.net/5766171341",
724729
"5805430188": "https://devtools-registry.s3.yandex.net/5805430188",
725730
"5829023352": "https://devtools-registry.s3.yandex.net/5829023352",
@@ -772,6 +777,7 @@
772777
"7431155222": "https://devtools-registry.s3.yandex.net/7431155222",
773778
"7448911598": "https://devtools-registry.s3.yandex.net/7448911598",
774779
"7478218007": "https://devtools-registry.s3.yandex.net/7478218007",
780+
"7522712750": "https://devtools-registry.s3.yandex.net/7522712750",
775781
"5766172695": "https://devtools-registry.s3.yandex.net/5766172695",
776782
"5805432230": "https://devtools-registry.s3.yandex.net/5805432230",
777783
"5829029743": "https://devtools-registry.s3.yandex.net/5829029743",
@@ -824,6 +830,7 @@
824830
"7431157276": "https://devtools-registry.s3.yandex.net/7431157276",
825831
"7448916360": "https://devtools-registry.s3.yandex.net/7448916360",
826832
"7478218861": "https://devtools-registry.s3.yandex.net/7478218861",
833+
"7522714072": "https://devtools-registry.s3.yandex.net/7522714072",
827834
"4307890075": "https://devtools-registry.s3.yandex.net/4307890075",
828835
"5517245192": "https://devtools-registry.s3.yandex.net/5517245192",
829836
"4307901240": "https://devtools-registry.s3.yandex.net/4307901240",
@@ -1502,6 +1509,8 @@
15021509
"7434972788": "devtools/ya/test/programs/test_tool/bin/test_tool for linux",
15031510
"7480257071": "devtools/ya/test/programs/test_tool/bin/test_tool for linux",
15041511
"7480276291": "devtools/ya/test/programs/test_tool/bin/test_tool for linux",
1512+
"7537937986": "devtools/ya/test/programs/test_tool/bin/test_tool for linux",
1513+
"7538005601": "devtools/ya/test/programs/test_tool/bin/test_tool for linux",
15051514
"5486731632": "devtools/ya/test/programs/test_tool/bin3/test_tool3 for linux",
15061515
"5514350352": "devtools/ya/test/programs/test_tool/bin3/test_tool3 for linux",
15071516
"5514360398": "devtools/ya/test/programs/test_tool/bin3/test_tool3 for linux",
@@ -1670,6 +1679,7 @@
16701679
"7431156616": "devtools/ymake/bin/ymake for darwin",
16711680
"7448914799": "devtools/ymake/bin/ymake for darwin",
16721681
"7478218557": "devtools/ymake/bin/ymake for darwin",
1682+
"7522713648": "devtools/ymake/bin/ymake for darwin",
16731683
"5766171800": "devtools/ymake/bin/ymake for darwin-arm64",
16741684
"5805430761": "devtools/ymake/bin/ymake for darwin-arm64",
16751685
"5829025456": "devtools/ymake/bin/ymake for darwin-arm64",
@@ -1722,6 +1732,7 @@
17221732
"7431156019": "devtools/ymake/bin/ymake for darwin-arm64",
17231733
"7448913101": "devtools/ymake/bin/ymake for darwin-arm64",
17241734
"7478218228": "devtools/ymake/bin/ymake for darwin-arm64",
1735+
"7522713246": "devtools/ymake/bin/ymake for darwin-arm64",
17251736
"5766173070": "devtools/ymake/bin/ymake for linux",
17261737
"5805432830": "devtools/ymake/bin/ymake for linux",
17271738
"5829031598": "devtools/ymake/bin/ymake for linux",
@@ -1774,6 +1785,7 @@
17741785
"7431157902": "devtools/ymake/bin/ymake for linux",
17751786
"7448917907": "devtools/ymake/bin/ymake for linux",
17761787
"7478219259": "devtools/ymake/bin/ymake for linux",
1788+
"7522714449": "devtools/ymake/bin/ymake for linux",
17771789
"5766171341": "devtools/ymake/bin/ymake for linux-aarch64",
17781790
"5805430188": "devtools/ymake/bin/ymake for linux-aarch64",
17791791
"5829023352": "devtools/ymake/bin/ymake for linux-aarch64",
@@ -1826,6 +1838,7 @@
18261838
"7431155222": "devtools/ymake/bin/ymake for linux-aarch64",
18271839
"7448911598": "devtools/ymake/bin/ymake for linux-aarch64",
18281840
"7478218007": "devtools/ymake/bin/ymake for linux-aarch64",
1841+
"7522712750": "devtools/ymake/bin/ymake for linux-aarch64",
18291842
"5766172695": "devtools/ymake/bin/ymake for win32-clang-cl",
18301843
"5805432230": "devtools/ymake/bin/ymake for win32-clang-cl",
18311844
"5829029743": "devtools/ymake/bin/ymake for win32-clang-cl",
@@ -1878,6 +1891,7 @@
18781891
"7431157276": "devtools/ymake/bin/ymake for win32-clang-cl",
18791892
"7448916360": "devtools/ymake/bin/ymake for win32-clang-cl",
18801893
"7478218861": "devtools/ymake/bin/ymake for win32-clang-cl",
1894+
"7522714072": "devtools/ymake/bin/ymake for win32-clang-cl",
18811895
"4307890075": "flake8_linter for linux",
18821896
"5517245192": "flake8_linter for linux",
18831897
"4307901240": "flake8_linter for linux-aarch64",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
IF (HOST_OS_DARWIN AND HOST_ARCH_X86_64)
2-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480275076)
2+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538003967)
33
ELSEIF (HOST_OS_DARWIN AND HOST_ARCH_ARM64)
4-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480274698)
4+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538003163)
55
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_X86_64)
6-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480276291)
6+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538005601)
77
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_AARCH64)
8-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480273938)
8+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538002456)
99
ELSEIF (HOST_OS_WINDOWS AND HOST_ARCH_X86_64)
10-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480275651)
10+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538004884)
1111

1212
ENDIF()
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
IF (HOST_OS_DARWIN AND HOST_ARCH_X86_64)
2-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480256374)
2+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537936527)
33
ELSEIF (HOST_OS_DARWIN AND HOST_ARCH_ARM64)
4-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480255951)
4+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537935343)
55
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_X86_64)
6-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480257071)
6+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537937986)
77
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_AARCH64)
8-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480255328)
8+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537934380)
99
ELSEIF (HOST_OS_WINDOWS AND HOST_ARCH_X86_64)
10-
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7480256738)
10+
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537937248)
1111

1212
ENDIF()

build/plugins/yql_python_udf.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@ def onregister_yql_python_udf(unit, *args):
2323
ymake.report_configure_error('Libra modules are not supported in opensource python UDFs')
2424
add_libra_modules = False
2525

26-
yql_base_dir = unit.get('YQL_BASE_DIR')
2726
yql_python_dir = unit.get('YQL_PYTHON_DIR')
2827
if not yql_python_dir:
29-
yql_python_dir = '/'.join([yql_base_dir, 'udfs/common/python'])
28+
yql_python_dir = 'yql/essentials/udfs/common/python'
3029

3130
unit.onyql_abi_version(['2', '27', '0'])
32-
unit.onpeerdir(['/'.join([yql_base_dir, '/udfs/common/python/python_udf'])])
31+
unit.onpeerdir(['yql/essentials/udfs/common/python/python_udf'])
3332
unit.onpeerdir(['yql/essentials/public/udf'])
3433

3534
if add_libra_modules:
@@ -41,13 +40,13 @@ def onregister_yql_python_udf(unit, *args):
4140
unit.onpeerdir(
4241
['library/python/runtime', '/'.join([yql_python_dir, '/main'])]
4342
if not py3
44-
else ['library/python/runtime_py3', '/'.join([yql_base_dir, '/udfs/common/python/main_py3'])]
43+
else ['library/python/runtime_py3', 'yql/essentials/udfs/common/python/main_py3']
4544
)
4645
else:
4746
flavor = 'System'
4847

4948
output_includes = [
50-
'/'.join([yql_base_dir, '/udfs/common/python/python_udf/python_udf.h']),
49+
'yql/essentials/udfs/common/python/python_udf/python_udf.h',
5150
'yql/essentials/public/udf/udf_registrator.h',
5251
]
5352
if add_libra_modules:
@@ -63,7 +62,6 @@ def onregister_yql_python_udf(unit, *args):
6362
resource_name,
6463
path,
6564
libra_flag,
66-
yql_base_dir,
6765
'OUT',
6866
path,
6967
'OUTPUT_INCLUDES',

0 commit comments

Comments
 (0)