Summary: Remove infra for dynamically downloading gtest as this fails like 50% of the time on travis. I'll manually push gtest as a submodule instead. Reviewed By: gkassabli Differential Revision: D4183033 fbshipit-source-id: 09a121b8ede7a5974a29b6692edc63bff79aece7
25 lines
636 B
Plaintext
25 lines
636 B
Plaintext
|
|
CSSLAYOUT_ROOT = '//...'
|
|
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/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'
|
|
|
|
CXX_LIBRARY_WHITELIST = [
|
|
'//lib/fb:fbjni',
|
|
'//java:jni',
|
|
]
|
|
|
|
def csslayout_dep(dep):
|
|
return '//' + dep
|
|
|
|
class allow_unsafe_import:
|
|
def __enter__(self):
|
|
pass
|
|
def __exit__(self, type, value, traceback):
|
|
pass
|