Apply sticker thumbnail fixes

WIP

WIP

WIP

WIP
This commit is contained in:
Ilya Laktyushin
2020-12-23 21:17:32 +04:00
committed by Ali
parent 2fbe175639
commit a49ae70f43
292 changed files with 898 additions and 8963 deletions

View File

@@ -1,29 +0,0 @@
load("//Config:buck_rule_macros.bzl", "static_library")
load("//Config:app_configuration.bzl", "appConfig")
static_library(
name = "BuildConfig",
srcs = glob([
"Sources/*.m",
]),
compiler_flags = [
'-DAPP_CONFIG_API_ID=' + appConfig()["apiId"],
'-DAPP_CONFIG_API_HASH="' + appConfig()["apiHash"] + '"',
'-DAPP_CONFIG_APP_CENTER_ID="' + appConfig()["appCenterId"] + '"',
'-DAPP_CONFIG_IS_INTERNAL_BUILD=' + appConfig()["isInternalBuild"],
'-DAPP_CONFIG_IS_APPSTORE_BUILD=' + appConfig()["isAppStoreBuild"],
'-DAPP_CONFIG_APPSTORE_ID=' + appConfig()["appStoreId"],
'-DAPP_SPECIFIC_URL_SCHEME="' + appConfig()["appSpecificUrlScheme"] + '"',
],
headers = glob([
"Sources/*.h",
]),
exported_headers = glob([
"PublicHeaders/**/*.h",
]),
deps = [
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
],
)