Update deprecated glob usages.
Summary: https://our.intern.facebook.com/intern/wiki/Buck/python-to-skylark/ Reviewed By: davidaurelio Differential Revision: D8795050 fbshipit-source-id: 1599a0a9ddd9af54a86884291945a93b91ba31bd
This commit is contained in:
parent
a08e8d07d0
commit
78137bc31a
|
@ -4,7 +4,7 @@ rn_android_library(
|
||||||
name = "testing",
|
name = "testing",
|
||||||
srcs = glob(
|
srcs = glob(
|
||||||
["**/*.java"],
|
["**/*.java"],
|
||||||
excludes = [
|
exclude = [
|
||||||
"idledetection/**/*.java",
|
"idledetection/**/*.java",
|
||||||
"network/**/*.java",
|
"network/**/*.java",
|
||||||
],
|
],
|
||||||
|
|
|
@ -24,7 +24,7 @@ rn_android_library(
|
||||||
name = "image",
|
name = "image",
|
||||||
srcs = glob(
|
srcs = glob(
|
||||||
["*.java"],
|
["*.java"],
|
||||||
excludes = IMAGE_EVENT_FILES,
|
exclude = IMAGE_EVENT_FILES,
|
||||||
),
|
),
|
||||||
provided_deps = [
|
provided_deps = [
|
||||||
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
|
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
|
||||||
|
|
|
@ -8,7 +8,7 @@ rn_android_library(
|
||||||
name = "testhelpers",
|
name = "testhelpers",
|
||||||
srcs = glob(
|
srcs = glob(
|
||||||
["*.java"],
|
["*.java"],
|
||||||
excludes = STANDARD_TEST_SRCS,
|
exclude = STANDARD_TEST_SRCS,
|
||||||
),
|
),
|
||||||
visibility = [
|
visibility = [
|
||||||
"PUBLIC",
|
"PUBLIC",
|
||||||
|
|
Loading…
Reference in New Issue