Summary: buck rules are not meant to be in the root buck file but instead next to source files. This diff moves benchmark rule into benchmark folder. Reviewed By: lucasr Differential Revision: D3992992 fbshipit-source-id: 34782ff73bbd5b799d83d0f01b553bfab928f1df
20 lines
620 B
Plaintext
20 lines
620 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'
|
|
GTEST_DL_URL = 'https://github.com/google/googletest/archive/release-1.7.0.zip'
|
|
JNI_DEPS = ['//lib/fb:fbjni']
|
|
|
|
def csslayout_dep(dep):
|
|
return '//' + dep
|
|
|
|
class allow_unsafe_import:
|
|
def __enter__(self):
|
|
pass
|
|
def __exit__(self, type, value, traceback):
|
|
pass
|