diff options
author | axxeny <axxeny@yandex-team.ru> | 2022-02-10 16:51:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:37 +0300 |
commit | f98b1ccc0a85cf58ec2b65a39dd7feb770803bba (patch) | |
tree | b0157ad7ed02aff51c9a5281eb42a44ec15a88c0 /build | |
parent | 6eb4c90eddd2fa28550ba7f04d0815659b4270ff (diff) | |
download | ydb-f98b1ccc0a85cf58ec2b65a39dd7feb770803bba.tar.gz |
Restoring authorship annotation for <axxeny@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build')
-rw-r--r-- | build/platform/mapkit/ya.make | 4 | ||||
-rw-r--r-- | build/scripts/gen_aar_gradle_script.py | 20 | ||||
-rwxr-xr-x | build/ymake_conf.py | 6 |
3 files changed, 15 insertions, 15 deletions
diff --git a/build/platform/mapkit/ya.make b/build/platform/mapkit/ya.make index 513dff5bcf..2679282ba4 100644 --- a/build/platform/mapkit/ya.make +++ b/build/platform/mapkit/ya.make @@ -6,8 +6,8 @@ NO_PLATFORM() IF (OS_ANDROID) IF (MAPS_MOBILE_EXPORT_CPP_API) - # Sandbox Resource ID duplicates - # arcadia/sandbox/projects/maps/mobile/MapsMobileMakeArtifacts/__init__.py + # Sandbox Resource ID duplicates + # arcadia/sandbox/projects/maps/mobile/MapsMobileMakeArtifacts/__init__.py DECLARE_EXTERNAL_RESOURCE(MAPKIT_ANDROID_LIBCXX_HEADERS sbr:2527848662) CFLAGS(GLOBAL -nostdinc++ GLOBAL -cxx-isystem GLOBAL $MAPKIT_ANDROID_LIBCXX_HEADERS_RESOURCE_GLOBAL) ENDIF() diff --git a/build/scripts/gen_aar_gradle_script.py b/build/scripts/gen_aar_gradle_script.py index 4594e67278..3240cc34c5 100644 --- a/build/scripts/gen_aar_gradle_script.py +++ b/build/scripts/gen_aar_gradle_script.py @@ -132,11 +132,11 @@ android {{ dependencies {{ for (bundle in bundles) - compile("$bundle") {{ + compile("$bundle") {{ transitive = true }} for (bundle in androidArs) - compile(bundle) {{ + compile(bundle) {{ transitive = true }} for (bundle in compileOnlyAndroidArs) @@ -150,20 +150,20 @@ android {{ classifier = 'sources' from android.sourceSets.main.java.srcDirs include '**/*.java' - eachFile {{ fcd -> - def segments = fcd.relativePath.segments - if (segments[0] == 'impl') {{ - fcd.relativePath = new RelativePath(true, segments.drop(1)) - }} - }} - includeEmptyDirs = false + eachFile {{ fcd -> + def segments = fcd.relativePath.segments + if (segments[0] == 'impl') {{ + fcd.relativePath = new RelativePath(true, segments.drop(1)) + }} + }} + includeEmptyDirs = false }} def manifestFile = android.sourceSets.main.manifest.srcFile def manifestXml = new XmlParser().parse(manifestFile) def packageName = manifestXml['@package'] - def groupName = packageName.tokenize('.')[0..-2].join('.') + def groupName = packageName.tokenize('.')[0..-2].join('.') def androidNs = new groovy.xml.Namespace("http://schemas.android.com/apk/res/android") def packageVersion = manifestXml.attributes()[androidNs.versionName] diff --git a/build/ymake_conf.py b/build/ymake_conf.py index 30219eb85e..d3c3b36fa3 100755 --- a/build/ymake_conf.py +++ b/build/ymake_conf.py @@ -1921,9 +1921,9 @@ class LD(Linker): if not preset('NO_DEBUGINFO'): self.dwarf_command = '$DWARF_TOOL $TARGET -o ${output;pre=$MODULE_PREFIX$REALPRJNAME.dSYM/Contents/Resources/DWARF/$MODULE_PREFIX:REALPRJNAME}' - if self.target.is_ios and preset('MAPSMOBI_BUILD_TARGET') and self.target.is_arm: - self.ld_flags.extend(('-fembed-bitcode', '-Wl,-bitcode_verify')) - + if self.target.is_ios and preset('MAPSMOBI_BUILD_TARGET') and self.target.is_arm: + self.ld_flags.extend(('-fembed-bitcode', '-Wl,-bitcode_verify')) + if self.build.profiler_type == Profiler.GProf: self.ld_flags.append('-pg') |