Summary: Move -fPIC from BUCK to YOGA_DEFS, so that it can be overridden when building yoga inside another build tree (since the larger build tree may need its own configuration for -fPIC). No change when building yoga standalone. Reviewed By: emilsjolander Differential Revision: D4714782 fbshipit-source-id: c706336cda72b36045e744e4fcaea4c0899bcf38
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
|
|
YOGA_ROOTS = ['//...']
|
|
JAVA_TARGET = '//java:java'
|
|
INFER_ANNOTATIONS_TARGET = '//lib/infer-annotations:infer-annotations'
|
|
JSR_305_TARGET = '//lib/jsr-305:jsr-305'
|
|
JUNIT_TARGET = '//lib/junit:junit'
|
|
PROGRUARD_ANNOTATIONS_TARGET = '//java/proguard-annotations/src/main/java/com/facebook/proguard/annotations:annotations'
|
|
SOLOADER_TARGET = '//lib/soloader:soloader'
|
|
GTEST_TARGET = '//lib/gtest:gtest'
|
|
JNI_TARGET = '//lib/jni:jni'
|
|
FBJNI_TARGET = '//lib/fb:fbjni'
|
|
APPCOMPAT_TARGET = '//lib/appcompat:appcompat'
|
|
ANDROID_SUPPORT_TARGET = '//lib/android-support:android-support'
|
|
ANDROID_TARGET = '//android:android'
|
|
ANDROID_JAVA_TARGET = '//android/src/main/java/com/facebook/yoga/android:android'
|
|
ANDROID_RES_TARGET = '//android:res'
|
|
ANDROID_SAMPLE_JAVA_TARGET = '//android/sample/java/com/facebook/samples/yoga:yoga'
|
|
ANDROID_SAMPLE_RES_TARGET = '//android/sample:res'
|
|
|
|
THIS_IS_FBOBJC = False
|
|
|
|
CXX_LIBRARY_WHITELIST = [
|
|
'//:yoga',
|
|
'//lib/fb:fbjni',
|
|
'//java:jni',
|
|
]
|
|
|
|
BASE_COMPILER_FLAGS = [
|
|
'-fno-omit-frame-pointer',
|
|
'-fexceptions',
|
|
'-Wall',
|
|
'-Werror',
|
|
'-O3',
|
|
]
|
|
|
|
LIBRARY_COMPILER_FLAGS = BASE_COMPILER_FLAGS + [
|
|
'-fPIC',
|
|
]
|
|
|
|
def yoga_dep(dep):
|
|
return '//' + dep
|
|
|
|
with allow_unsafe_import():
|
|
import os.path
|
|
def isdir(filename):
|
|
return os.path.isdir(filename)
|