Apply auto-formatter for BUCK files in fbandroid.

fbshipit-source-id: 278ce6f67f5df830b2218e3aca69be103d3c56a6
This commit is contained in:
Michael Bolin
2017-02-24 21:40:45 -08:00
committed by Facebook Github Bot
parent ce3146d618
commit 48cb932c6e
132 changed files with 2473 additions and 2498 deletions

View File

@@ -1,31 +1,31 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_binary(
name = 'app',
manifest = 'src/main/AndroidManifest.xml',
keystore = '//keystores:debug',
deps = [
':movies-lib',
],
name = "app",
keystore = "//keystores:debug",
manifest = "src/main/AndroidManifest.xml",
deps = [
":movies-lib",
],
)
android_library(
name = 'movies-lib',
srcs = glob(['src/main/java/**/*.java']),
deps = [
':res',
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/shell:shell'),
react_native_target('jni/prebuilt:android-jsc'),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target('jni/prebuilt:reactnative-libs'),
],
name = "movies-lib",
srcs = glob(["src/main/java/**/*.java"]),
deps = [
":res",
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/shell:shell"),
react_native_target("jni/prebuilt:android-jsc"),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target("jni/prebuilt:reactnative-libs"),
],
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'com.facebook.react.movies',
name = "res",
package = "com.facebook.react.movies",
res = "src/main/res",
)

View File

@@ -1,31 +1,31 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_binary(
name = 'app',
manifest = 'src/main/AndroidManifest.xml',
keystore = '//keystores:debug',
deps = [
':tictactoe-lib',
],
name = "app",
keystore = "//keystores:debug",
manifest = "src/main/AndroidManifest.xml",
deps = [
":tictactoe-lib",
],
)
android_library(
name = 'tictactoe-lib',
srcs = glob(['src/main/java/**/*.java']),
deps = [
':res',
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/shell:shell'),
react_native_target('jni/prebuilt:android-jsc'),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target('jni/prebuilt:reactnative-libs'),
],
name = "tictactoe-lib",
srcs = glob(["src/main/java/**/*.java"]),
deps = [
":res",
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/shell:shell"),
react_native_target("jni/prebuilt:android-jsc"),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target("jni/prebuilt:reactnative-libs"),
],
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'com.facebook.react.tictactoe',
name = "res",
package = "com.facebook.react.tictactoe",
res = "src/main/res",
)

View File

@@ -1,32 +1,32 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_binary(
name = 'app',
manifest = 'src/main/AndroidManifest.xml',
keystore = '//keystores:debug',
deps = [
':uiexplorer-lib',
],
name = "app",
keystore = "//keystores:debug",
manifest = "src/main/AndroidManifest.xml",
deps = [
":uiexplorer-lib",
],
)
android_library(
name = 'uiexplorer-lib',
srcs = glob(['src/main/java/**/*.java']),
deps = [
':res',
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/shell:shell'),
react_native_target('jni/prebuilt:android-jsc'),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target('jni/prebuilt:reactnative-libs'),
],
name = "uiexplorer-lib",
srcs = glob(["src/main/java/**/*.java"]),
deps = [
":res",
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/shell:shell"),
react_native_target("jni/prebuilt:android-jsc"),
# .so files are prebuilt by Gradle with `./gradlew :ReactAndroid:packageReactNdkLibsForBuck`
react_native_target("jni/prebuilt:reactnative-libs"),
],
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'com.facebook.react.uiapp',
name = "res",
package = "com.facebook.react.uiapp",
res = "src/main/res",
)

View File

@@ -1,22 +1,22 @@
android_prebuilt_aar(
name = 'appcompat',
aar = ':appcompat-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "appcompat",
aar = ":appcompat-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'appcompat-binary-aar',
url = 'mvn:com.android.support:appcompat-v7:aar:23.0.1',
sha1 = '7d659f671541394a8bc2b9f909950aa2a5ec87ff',
name = "appcompat-binary-aar",
sha1 = "7d659f671541394a8bc2b9f909950aa2a5ec87ff",
url = "mvn:com.android.support:appcompat-v7:aar:23.0.1",
)
android_prebuilt_aar(
name = 'android-jsc',
aar = ':android-jsc-aar',
name = "android-jsc",
aar = ":android-jsc-aar",
)
remote_file(
name = 'android-jsc-aar',
url = 'mvn:org.webkit:android-jsc:aar:r174650',
sha1 = '880cedd93f43e0fc841f01f2fa185a63d9230f85',
name = "android-jsc-aar",
sha1 = "880cedd93f43e0fc841f01f2fa185a63d9230f85",
url = "mvn:org.webkit:android-jsc:aar:r174650",
)

View File

@@ -1,5 +1,5 @@
android_resource(
name = 'assets',
assets = '.',
visibility = ['PUBLIC'],
name = "assets",
assets = ".",
visibility = ["PUBLIC"],
)

View File

@@ -1,4 +1,4 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# We are running instrumentation tests in simple mode: app code and instrumentation are in the same APK
# Currently you need to run these commands to execute tests:
@@ -8,16 +8,16 @@ include_defs('//ReactAndroid/DEFS')
# buck install ReactAndroid/src/androidTest/buck-runner:instrumentation-tests
# ./scripts/run-android-instrumentation-tests.sh com.facebook.react.tests
android_binary(
name = 'instrumentation-tests',
manifest = 'AndroidManifest.xml',
keystore = '//keystores:debug',
deps = [
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/java/testing-support-lib:exposed-instrumentation-api'),
react_native_integration_tests_target('assets:assets'),
react_native_integration_tests_target('java/com/facebook/react/tests:tests'),
react_native_target('java/com/facebook/react/devsupport:devsupport'),
react_native_target('jni/prebuilt:android-jsc'),
react_native_target('jni/prebuilt:reactnative-libs'),
],
name = "instrumentation-tests",
keystore = "//keystores:debug",
manifest = "AndroidManifest.xml",
deps = [
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/java/testing-support-lib:exposed-instrumentation-api"),
react_native_integration_tests_target("assets:assets"),
react_native_integration_tests_target("java/com/facebook/react/tests:tests"),
react_native_target("java/com/facebook/react/devsupport:devsupport"),
react_native_target("jni/prebuilt:android-jsc"),
react_native_target("jni/prebuilt:reactnative-libs"),
],
)

View File

@@ -1,29 +1,29 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'testing',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/buck-android-support:buck-android-support'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/junit:junit'),
react_native_dep('third-party/java/mockito:mockito'),
react_native_dep('third-party/java/testing-support-lib:runner'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/cxxbridge:bridge'),
react_native_target('java/com/facebook/react/devsupport:interfaces'),
react_native_target('java/com/facebook/react/module/model:model'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/debug:interfaces'),
react_native_target('java/com/facebook/react/shell:shell'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
],
visibility = [
'PUBLIC',
],
name = "testing",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/buck-android-support:buck-android-support"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/junit:junit"),
react_native_dep("third-party/java/mockito:mockito"),
react_native_dep("third-party/java/testing-support-lib:runner"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/cxxbridge:bridge"),
react_native_target("java/com/facebook/react/devsupport:interfaces"),
react_native_target("java/com/facebook/react/module/model:model"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
react_native_target("java/com/facebook/react/shell:shell"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
],
)

View File

@@ -1,38 +1,38 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/junit:junit'),
react_native_integration_tests_target('java/com/facebook/react/testing:testing'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/appstate:appstate'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/datepicker:datepicker'),
react_native_target('java/com/facebook/react/modules/share:share'),
react_native_target('java/com/facebook/react/modules/systeminfo:systeminfo'),
react_native_target('java/com/facebook/react/modules/timepicker:timepicker'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/picker:picker'),
react_native_target('java/com/facebook/react/views/progressbar:progressbar'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
react_native_target('java/com/facebook/react/views/slider:slider'),
react_native_target('java/com/facebook/react/views/swiperefresh:swiperefresh'),
react_native_target('java/com/facebook/react/views/text:text'),
react_native_target('java/com/facebook/react/views/textinput:textinput'),
react_native_target('java/com/facebook/react/views/view:view'),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/junit:junit"),
react_native_integration_tests_target("java/com/facebook/react/testing:testing"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/appstate:appstate"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/datepicker:datepicker"),
react_native_target("java/com/facebook/react/modules/share:share"),
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo"),
react_native_target("java/com/facebook/react/modules/timepicker:timepicker"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/picker:picker"),
react_native_target("java/com/facebook/react/views/progressbar:progressbar"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
react_native_target("java/com/facebook/react/views/slider:slider"),
react_native_target("java/com/facebook/react/views/swiperefresh:swiperefresh"),
react_native_target("java/com/facebook/react/views/text:text"),
react_native_target("java/com/facebook/react/views/textinput:textinput"),
react_native_target("java/com/facebook/react/views/view:view"),
]
android_library(
name = 'tests',
srcs = glob(['**/*.java']),
deps = deps,
visibility = [
'PUBLIC',
],
name = "tests",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = deps,
)

View File

@@ -1,10 +1,10 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# used by ReactToolbarManager because of Gradle
# TODO t10182713 will be replaced with appcompat-orig when we stop using Gradle
android_resource(
name = 'appcompat',
res = react_native_dep('third-party/android/support/v7/appcompat-orig:res-unpacker-cmd'),
package = 'com.facebook.react',
visibility = ['//ReactAndroid/...',],
name = "appcompat",
package = "com.facebook.react",
res = react_native_dep("third-party/android/support/v7/appcompat-orig:res-unpacker-cmd"),
visibility = ["//ReactAndroid/..."],
)

View File

@@ -1,14 +1,13 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'yoga',
srcs = glob(['yoga/*.java']),
deps = [
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = ['PUBLIC'],
name = "yoga",
srcs = glob(["yoga/*.java"]),
visibility = ["PUBLIC"],
deps = [
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,16 +1,15 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'jni',
srcs = glob(['**/*.java']),
proguard_config = 'fbjni.pro',
deps = [
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC',
]
name = "jni",
srcs = glob(["**/*.java"]),
proguard_config = "fbjni.pro",
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,8 +1,7 @@
android_library(
name = 'perftest',
srcs = glob(['*.java']),
visibility = [
'PUBLIC',
],
name = "perftest",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
)

View File

@@ -1,11 +1,10 @@
android_library(
name = 'annotations',
srcs = glob(['*.java']),
proguard_config = 'proguard_annotations.pro',
deps = [
],
visibility = [
'PUBLIC',
],
name = "annotations",
srcs = glob(["*.java"]),
proguard_config = "proguard_annotations.pro",
visibility = [
"PUBLIC",
],
deps = [
],
)

View File

@@ -1,13 +1,12 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'quicklog',
srcs = glob(['*.java']),
exported_deps = [
react_native_dep('java/com/facebook/quicklog/identifiers:identifiers'),
],
visibility = [
'PUBLIC',
],
name = "quicklog",
srcs = glob(["*.java"]),
exported_deps = [
react_native_dep("java/com/facebook/quicklog/identifiers:identifiers"),
],
visibility = [
"PUBLIC",
],
)

View File

@@ -1,8 +1,7 @@
android_library(
name = 'identifiers',
srcs = glob(['*.java']),
visibility = [
'PUBLIC',
],
name = "identifiers",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
)

View File

@@ -1,36 +1,35 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
DEPS = [
react_native_dep('java/com/facebook/systrace:systrace'),
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/cxxbridge:bridge'),
react_native_target('java/com/facebook/react/devsupport:devsupport'),
react_native_target('java/com/facebook/react/devsupport:interfaces'),
react_native_target('java/com/facebook/react/jstasks:jstasks'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/module/model:model'),
react_native_target('java/com/facebook/react/modules/appregistry:appregistry'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/debug:debug'),
react_native_target('java/com/facebook/react/modules/debug:interfaces'),
react_native_target('java/com/facebook/react/modules/systeminfo:systeminfo'),
react_native_target('java/com/facebook/react/modules/toast:toast'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/views/imagehelper:imagehelper'),
react_native_dep("java/com/facebook/systrace:systrace"),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/cxxbridge:bridge"),
react_native_target("java/com/facebook/react/devsupport:devsupport"),
react_native_target("java/com/facebook/react/devsupport:interfaces"),
react_native_target("java/com/facebook/react/jstasks:jstasks"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/module/model:model"),
react_native_target("java/com/facebook/react/modules/appregistry:appregistry"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/debug:debug"),
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo"),
react_native_target("java/com/facebook/react/modules/toast:toast"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/views/imagehelper:imagehelper"),
]
android_library(
name = 'react',
srcs = glob(['*.java']),
deps = DEPS,
visibility = [
'PUBLIC',
],
name = "react",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = DEPS,
)

View File

@@ -1,23 +1,23 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'animated',
srcs = glob([
'*.java',
]),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "animated",
srcs = glob([
"*.java",
]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,15 +1,14 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'animation',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
],
visibility = [
'PUBLIC'
],
name = "animation",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
],
)

View File

@@ -1,4 +1,4 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# We package the JS files from the bundler and local directory into what we
# pretend is an ordinary JAR file. By putting them under the assets/ directory
@@ -6,31 +6,31 @@ include_defs('//ReactAndroid/DEFS')
# our JS bundles arrive in a place accessible by the AssetManager at runtime.
python_binary(
name = 'package_js',
main = 'package_js.py',
visibility = [
'PUBLIC',
],
name = "package_js",
main = "package_js.py",
visibility = [
"PUBLIC",
],
)
android_library(
name = 'bridge',
srcs = glob(['**/*.java']),
exported_deps = [
react_native_dep('java/com/facebook/jni:jni'),
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
react_native_dep('third-party/java/jsr-330:jsr-330'),
],
deps = [
react_native_dep('java/com/facebook/systrace:systrace'),
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/common:common'),
],
visibility = [
'PUBLIC',
],
name = "bridge",
srcs = glob(["**/*.java"]),
exported_deps = [
react_native_dep("java/com/facebook/jni:jni"),
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
react_native_dep("third-party/java/jsr-330:jsr-330"),
],
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("java/com/facebook/systrace:systrace"),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/common:common"),
],
)

View File

@@ -1,34 +1,36 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
SUB_PROJECTS = [
'network/**/*',
"network/**/*",
]
android_library(
name = 'common',
srcs = glob(['**/*.java'], excludes=SUB_PROJECTS),
exported_deps = [
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
],
deps = [
':build_config',
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC',
],
name = "common",
srcs = glob(
["**/*.java"],
excludes = SUB_PROJECTS,
),
exported_deps = [
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
],
visibility = [
"PUBLIC",
],
deps = [
":build_config",
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)
android_build_config(
name = 'build_config',
package = 'com.facebook.react',
values = [
'boolean IS_INTERNAL_BUILD = true',
],
visibility = [
'PUBLIC',
],
name = "build_config",
package = "com.facebook.react",
values = [
"boolean IS_INTERNAL_BUILD = true",
],
visibility = [
"PUBLIC",
],
)

View File

@@ -1,13 +1,12 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'network',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/okhttp:okhttp3'),
],
visibility = [
'PUBLIC',
],
name = "network",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/okhttp:okhttp3"),
],
)

View File

@@ -1,34 +1,34 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'bridge',
srcs = glob(['**/*.java']),
exported_deps = [
react_native_dep('java/com/facebook/jni:jni'),
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
],
proguard_config = 'bridge.pro',
deps = [
react_native_dep('java/com/facebook/systrace:systrace'),
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
# TODO mhorowitz:
# java/com/facebook/catalyst/js/react-native-github/ReactAndroid/src/main/java/com/facebook/react/bridge/
# lacks a similar dependency to this. This means that the
# loadLibrary calls in it are not guaranteed to succeed. This is
# kind of a mess for the jni/jni-internal stuff. In theory, we
# should be creating -internal android_library rules, too. In
# practice, since these are resolved at runtime, putting the
# dependency in the app works, too. gross.
# '//native/react/jni:jni-internal',
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/devsupport:devsupport'),
react_native_target('java/com/facebook/react/module/model:model'),
],
visibility = [
'PUBLIC',
],
name = "bridge",
srcs = glob(["**/*.java"]),
exported_deps = [
react_native_dep("java/com/facebook/jni:jni"),
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
],
proguard_config = "bridge.pro",
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("java/com/facebook/systrace:systrace"),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
# TODO mhorowitz:
# java/com/facebook/catalyst/js/react-native-github/ReactAndroid/src/main/java/com/facebook/react/bridge/
# lacks a similar dependency to this. This means that the
# loadLibrary calls in it are not guaranteed to succeed. This is
# kind of a mess for the jni/jni-internal stuff. In theory, we
# should be creating -internal android_library rules, too. In
# practice, since these are resolved at runtime, putting the
# dependency in the app works, too. gross.
# '//native/react/jni:jni-internal',
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/devsupport:devsupport"),
react_native_target("java/com/facebook/react/module/model:model"),
],
)

View File

@@ -1,41 +1,41 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'devsupport',
manifest = 'AndroidManifest.xml',
srcs = glob(['*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/okhttp:okhttp3'),
react_native_dep('third-party/java/okhttp:okhttp3-ws'),
react_native_dep('third-party/java/okio:okio'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/common/network:network'),
react_native_target('java/com/facebook/react/devsupport:interfaces'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/debug:debug'),
react_native_target('java/com/facebook/react/modules/debug:interfaces'),
react_native_target('java/com/facebook/react/modules/systeminfo:systeminfo'),
react_native_target('java/com/facebook/react/packagerconnection:packagerconnection'),
react_native_target('res:devsupport'),
],
visibility = [
'PUBLIC',
],
name = "devsupport",
srcs = glob(["*.java"]),
manifest = "AndroidManifest.xml",
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/okhttp:okhttp3"),
react_native_dep("third-party/java/okhttp:okhttp3-ws"),
react_native_dep("third-party/java/okio:okio"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/common/network:network"),
react_native_target("java/com/facebook/react/devsupport:interfaces"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/debug:debug"),
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo"),
react_native_target("java/com/facebook/react/packagerconnection:packagerconnection"),
react_native_target("res:devsupport"),
],
)
android_library(
name = 'interfaces',
srcs = glob(['interfaces/*.java']),
deps = [
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/modules/debug:interfaces'),
],
visibility = [
'PUBLIC',
],
name = "interfaces",
srcs = glob(["interfaces/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
],
)

View File

@@ -1,35 +1,35 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'flat',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('libraries/textlayoutbuilder:textlayoutbuilder'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/modules/i18nmanager:i18nmanager'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/art:art'),
react_native_target('java/com/facebook/react/views/image:image'),
react_native_target('java/com/facebook/react/views/imagehelper:withmultisource'),
react_native_target('java/com/facebook/react/views/modal:modal'),
react_native_target('java/com/facebook/react/views/text:text'),
react_native_target('java/com/facebook/react/views/textinput:textinput'),
react_native_target('java/com/facebook/react/views/view:view'),
react_native_target('java/com/facebook/react/views/viewpager:viewpager'),
],
visibility = [
'PUBLIC',
],
name = "flat",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("libraries/textlayoutbuilder:textlayoutbuilder"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/modules/i18nmanager:i18nmanager"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/art:art"),
react_native_target("java/com/facebook/react/views/image:image"),
react_native_target("java/com/facebook/react/views/imagehelper:withmultisource"),
react_native_target("java/com/facebook/react/views/modal:modal"),
react_native_target("java/com/facebook/react/views/text:text"),
react_native_target("java/com/facebook/react/views/textinput:textinput"),
react_native_target("java/com/facebook/react/views/view:view"),
react_native_target("java/com/facebook/react/views/viewpager:viewpager"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
DEPS = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/modules/appregistry:appregistry'),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/modules/appregistry:appregistry"),
]
android_library(
name = 'jstasks',
srcs = glob(['*.java']),
deps = DEPS,
visibility = [
'PUBLIC',
],
name = "jstasks",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = DEPS,
)

View File

@@ -1,15 +1,14 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'annotations',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
],
visibility=[
'PUBLIC'
]
name = "annotations",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
],
)

View File

@@ -1,13 +1,12 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'model',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility=[
'PUBLIC'
]
name = "model",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
java_library(
name = 'processing',
srcs = glob(['*.java']),
source = '7',
target = '7',
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/javapoet:javapoet'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/module/model:model'),
],
visibility=[
'PUBLIC'
]
name = "processing",
srcs = glob(["*.java"]),
source = "7",
target = "7",
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/javapoet:javapoet"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/module/model:model"),
],
)

View File

@@ -1,12 +1,12 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'appregistry',
srcs = glob(['**/*.java']),
deps = [
react_native_target('java/com/facebook/react/bridge:bridge'),
],
visibility = [
'PUBLIC',
],
name = "appregistry",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_target("java/com/facebook/react/bridge:bridge"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'appstate',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "appstate",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'camera',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "camera",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'clipboard',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "clipboard",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,17 +1,16 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'common',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
],
visibility = [
'PUBLIC',
],
name = "common",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'core',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/devsupport:interfaces'),
react_native_target('java/com/facebook/react/jstasks:jstasks'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "core",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/devsupport:interfaces"),
react_native_target("java/com/facebook/react/jstasks:jstasks"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'datepicker',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "datepicker",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,29 +1,29 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'debug',
srcs = glob(['*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/debug:interfaces'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
],
visibility = [
'PUBLIC',
],
name = "debug",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
],
)
android_library(
name = 'interfaces',
srcs = glob(['interfaces/*.java']),
deps = [
],
visibility = [
'PUBLIC',
],
name = "interfaces",
srcs = glob(["interfaces/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'dialog',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "dialog",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,28 +1,28 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'fresco',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('java/com/facebook/systrace:systrace'),
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline-okhttp3'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/android/support-annotations:android-support-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/okhttp:okhttp3'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/common:common'),
react_native_target('java/com/facebook/react/modules/network:network'),
],
visibility = [
'PUBLIC',
],
name = "fresco",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("java/com/facebook/systrace:systrace"),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline-okhttp3"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/okhttp:okhttp3"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/common:common"),
react_native_target("java/com/facebook/react/modules/network:network"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'i18nmanager',
srcs = glob(['*.java']),
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "i18nmanager",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,21 +1,20 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'image',
srcs = glob(['*.java']),
deps = [
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "image",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,17 +1,16 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'intent',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "intent",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'location',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "location",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'netinfo',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "netinfo",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,23 +1,23 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'network',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/okhttp:okhttp3'),
react_native_dep('third-party/java/okhttp:okhttp3-urlconnection'),
react_native_dep('third-party/java/okio:okio'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/common/network:network'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "network",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/okhttp:okhttp3"),
react_native_dep("third-party/java/okhttp:okhttp3-urlconnection"),
react_native_dep("third-party/java/okio:okio"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/common/network:network"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'permissions',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "permissions",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'share',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "share",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'statusbar',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
],
visibility = [
'PUBLIC',
],
name = "statusbar",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'storage',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/common:common'),
],
visibility = [
'PUBLIC',
],
name = "storage",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/common:common"),
],
)

View File

@@ -1,17 +1,16 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'systeminfo',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "systeminfo",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'timepicker',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "timepicker",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,17 +1,16 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'toast',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "toast",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'vibration',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
],
visibility = [
'PUBLIC',
],
name = "vibration",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
],
)

View File

@@ -1,23 +1,22 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'websocket',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/okhttp:okhttp3'),
react_native_dep('third-party/java/okhttp:okhttp3-ws'),
react_native_dep('third-party/java/okio:okio'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/network:network'),
],
visibility = [
'PUBLIC',
],
name = "websocket",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/okhttp:okhttp3"),
react_native_dep("third-party/java/okhttp:okhttp3-ws"),
react_native_dep("third-party/java/okio:okio"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/network:network"),
],
)

View File

@@ -1,17 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'packagerconnection',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_dep('third-party/java/okhttp:okhttp3'),
react_native_dep('third-party/java/okhttp:okhttp3-ws'),
react_native_dep('third-party/java/okio:okio'),
],
visibility = [
'PUBLIC',
],
name = "packagerconnection",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_dep("third-party/java/okhttp:okhttp3"),
react_native_dep("third-party/java/okhttp:okhttp3-ws"),
react_native_dep("third-party/java/okio:okio"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
java_library(
name = 'processing',
srcs = glob(['*.java']),
source = '7',
target = '7',
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/javapoet:javapoet'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility=[
'PUBLIC'
]
name = "processing",
srcs = glob(["*.java"]),
source = "7",
target = "7",
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/javapoet:javapoet"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,64 +1,64 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'shell',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react:react'),
react_native_target('java/com/facebook/react/animated:animated'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/devsupport:devsupport'),
react_native_target('java/com/facebook/react/flat:flat'),
react_native_target('java/com/facebook/react/module/model:model'),
react_native_target('java/com/facebook/react/modules/appstate:appstate'),
react_native_target('java/com/facebook/react/modules/camera:camera'),
react_native_target('java/com/facebook/react/modules/clipboard:clipboard'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/datepicker:datepicker'),
react_native_target('java/com/facebook/react/modules/debug:debug'),
react_native_target('java/com/facebook/react/modules/dialog:dialog'),
react_native_target('java/com/facebook/react/modules/fresco:fresco'),
react_native_target('java/com/facebook/react/modules/i18nmanager:i18nmanager'),
react_native_target('java/com/facebook/react/modules/image:image'),
react_native_target('java/com/facebook/react/modules/intent:intent'),
react_native_target('java/com/facebook/react/modules/location:location'),
react_native_target('java/com/facebook/react/modules/netinfo:netinfo'),
react_native_target('java/com/facebook/react/modules/network:network'),
react_native_target('java/com/facebook/react/modules/permissions:permissions'),
react_native_target('java/com/facebook/react/modules/share:share'),
react_native_target('java/com/facebook/react/modules/statusbar:statusbar'),
react_native_target('java/com/facebook/react/modules/storage:storage'),
react_native_target('java/com/facebook/react/modules/timepicker:timepicker'),
react_native_target('java/com/facebook/react/modules/toast:toast'),
react_native_target('java/com/facebook/react/modules/vibration:vibration'),
react_native_target('java/com/facebook/react/modules/websocket:websocket'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/views/art:art'),
react_native_target('java/com/facebook/react/views/drawer:drawer'),
react_native_target('java/com/facebook/react/views/image:image'),
react_native_target('java/com/facebook/react/views/modal:modal'),
react_native_target('java/com/facebook/react/views/picker:picker'),
react_native_target('java/com/facebook/react/views/progressbar:progressbar'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
react_native_target('java/com/facebook/react/views/slider:slider'),
react_native_target('java/com/facebook/react/views/swiperefresh:swiperefresh'),
react_native_target('java/com/facebook/react/views/switchview:switchview'),
react_native_target('java/com/facebook/react/views/text:text'),
react_native_target('java/com/facebook/react/views/text/frescosupport:frescosupport'),
react_native_target('java/com/facebook/react/views/textinput:textinput'),
react_native_target('java/com/facebook/react/views/toolbar:toolbar'),
react_native_target('java/com/facebook/react/views/view:view'),
react_native_target('java/com/facebook/react/views/viewpager:viewpager'),
react_native_target('java/com/facebook/react/views/webview:webview'),
react_native_target('res:shell'),
],
visibility = [
'PUBLIC',
],
name = "shell",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react:react"),
react_native_target("java/com/facebook/react/animated:animated"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/devsupport:devsupport"),
react_native_target("java/com/facebook/react/flat:flat"),
react_native_target("java/com/facebook/react/module/model:model"),
react_native_target("java/com/facebook/react/modules/appstate:appstate"),
react_native_target("java/com/facebook/react/modules/camera:camera"),
react_native_target("java/com/facebook/react/modules/clipboard:clipboard"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/datepicker:datepicker"),
react_native_target("java/com/facebook/react/modules/debug:debug"),
react_native_target("java/com/facebook/react/modules/dialog:dialog"),
react_native_target("java/com/facebook/react/modules/fresco:fresco"),
react_native_target("java/com/facebook/react/modules/i18nmanager:i18nmanager"),
react_native_target("java/com/facebook/react/modules/image:image"),
react_native_target("java/com/facebook/react/modules/intent:intent"),
react_native_target("java/com/facebook/react/modules/location:location"),
react_native_target("java/com/facebook/react/modules/netinfo:netinfo"),
react_native_target("java/com/facebook/react/modules/network:network"),
react_native_target("java/com/facebook/react/modules/permissions:permissions"),
react_native_target("java/com/facebook/react/modules/share:share"),
react_native_target("java/com/facebook/react/modules/statusbar:statusbar"),
react_native_target("java/com/facebook/react/modules/storage:storage"),
react_native_target("java/com/facebook/react/modules/timepicker:timepicker"),
react_native_target("java/com/facebook/react/modules/toast:toast"),
react_native_target("java/com/facebook/react/modules/vibration:vibration"),
react_native_target("java/com/facebook/react/modules/websocket:websocket"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/views/art:art"),
react_native_target("java/com/facebook/react/views/drawer:drawer"),
react_native_target("java/com/facebook/react/views/image:image"),
react_native_target("java/com/facebook/react/views/modal:modal"),
react_native_target("java/com/facebook/react/views/picker:picker"),
react_native_target("java/com/facebook/react/views/progressbar:progressbar"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
react_native_target("java/com/facebook/react/views/slider:slider"),
react_native_target("java/com/facebook/react/views/swiperefresh:swiperefresh"),
react_native_target("java/com/facebook/react/views/switchview:switchview"),
react_native_target("java/com/facebook/react/views/text:text"),
react_native_target("java/com/facebook/react/views/text/frescosupport:frescosupport"),
react_native_target("java/com/facebook/react/views/textinput:textinput"),
react_native_target("java/com/facebook/react/views/toolbar:toolbar"),
react_native_target("java/com/facebook/react/views/view:view"),
react_native_target("java/com/facebook/react/views/viewpager:viewpager"),
react_native_target("java/com/facebook/react/views/webview:webview"),
react_native_target("res:shell"),
],
)

View File

@@ -1,14 +1,13 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'touch',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC'
],
name = "touch",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,31 +1,30 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'uimanager',
srcs = glob([
'*.java',
'debug/*.java',
'events/*.java',
'layoutanimation/*.java'
]),
deps = [
YOGA_TARGET,
react_native_dep('java/com/facebook/systrace:systrace'),
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/animation:animation'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/modules/i18nmanager:i18nmanager'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "uimanager",
srcs = glob([
"*.java",
"debug/*.java",
"events/*.java",
"layoutanimation/*.java",
]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("java/com/facebook/systrace:systrace"),
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/animation:animation"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/modules/i18nmanager:i18nmanager"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,13 +1,12 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'annotations',
srcs = glob(['*.java']),
deps = [
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC',
],
name = "annotations",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'art',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "art",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,22 +1,21 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'drawer',
srcs = glob(['**/*.java']),
deps = [
YOGA_TARGET,
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
],
visibility = [
'PUBLIC',
],
name = "drawer",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
],
)

View File

@@ -1,48 +1,50 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
IMAGE_EVENT_FILES = [
'ImageLoadEvent.java',
"ImageLoadEvent.java",
]
android_library(
name = 'imageevents',
srcs = IMAGE_EVENT_FILES,
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/android/support-annotations:android-support-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
],
visibility = ['PUBLIC'],
name = "imageevents",
srcs = IMAGE_EVENT_FILES,
visibility = ["PUBLIC"],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
],
)
android_library(
name = 'image',
srcs = glob(['*.java'], excludes = IMAGE_EVENT_FILES),
exported_deps = [
':imageevents',
],
deps = [
YOGA_TARGET,
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/android/support-annotations:android-support-annotations'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/modules/fresco:fresco'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/imagehelper:withmultisource'),
],
visibility = [
'PUBLIC',
],
name = "image",
srcs = glob(
["*.java"],
excludes = IMAGE_EVENT_FILES,
),
exported_deps = [
":imageevents",
],
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/modules/fresco:fresco"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/imagehelper:withmultisource"),
],
)

View File

@@ -1,30 +1,32 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'imagehelper',
srcs = glob(['*.java'], excludes=['MultiSourceHelper.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC',
],
name = "imagehelper",
srcs = glob(
["*.java"],
excludes = ["MultiSourceHelper.java"],
),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)
android_library(
name = 'withmultisource',
srcs = ['MultiSourceHelper.java'],
exported_deps = [
':imagehelper',
],
deps = [
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
],
visibility = [
'PUBLIC',
],
name = "withmultisource",
srcs = ["MultiSourceHelper.java"],
exported_deps = [
":imagehelper",
],
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
],
)

View File

@@ -1,23 +1,22 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'modal',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/view:view'),
react_native_target('res:modal'),
],
visibility = [
'PUBLIC',
],
name = "modal",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/view:view"),
react_native_target("res:modal"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'picker',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "picker",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'progressbar',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "progressbar",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,22 +1,22 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'scroll',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/view:view'),
],
visibility = [
'PUBLIC',
],
name = "scroll",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/view:view"),
],
)

View File

@@ -1,19 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'slider',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('android_res/com/facebook/catalyst/appcompat:appcompat'),
react_native_dep('third-party/android/support/v7/appcompat-orig:appcompat'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "slider",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("android_res/com/facebook/catalyst/appcompat:appcompat"),
react_native_dep("third-party/android/support/v7/appcompat-orig:appcompat"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,20 +1,19 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'swiperefresh',
srcs = glob(['*.java']),
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
],
visibility = [
'PUBLIC',
],
name = "swiperefresh",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
],
)

View File

@@ -1,18 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'switchview',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/android/support/v7/appcompat-orig:appcompat'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "switchview",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/android/support/v7/appcompat-orig:appcompat"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,21 +1,20 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'text',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/view:view'),
],
visibility = [
'PUBLIC',
],
name = "text",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/view:view"),
],
)

View File

@@ -1,26 +1,25 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'frescosupport',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/fresco:fresco'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/text:text'),
],
visibility = [
'PUBLIC',
],
name = "frescosupport",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/fresco:fresco"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/text:text"),
],
)

View File

@@ -1,25 +1,25 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'textinput',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/modules/core:core'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/imagehelper:imagehelper'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
react_native_target('java/com/facebook/react/views/text:text'),
react_native_target('java/com/facebook/react/views/view:view'),
],
visibility = [
'PUBLIC',
],
name = "textinput",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/modules/core:core"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/imagehelper:imagehelper"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
react_native_target("java/com/facebook/react/views/text:text"),
react_native_target("java/com/facebook/react/views/view:view"),
],
)

View File

@@ -1,24 +1,24 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'toolbar',
srcs = glob(['**/*.java']),
deps = [
YOGA_TARGET,
react_native_dep('android_res/com/facebook/catalyst/appcompat:appcompat'),
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-drawee'),
react_native_dep('libraries/fresco/fresco-react-native:fresco-react-native'),
react_native_dep('libraries/fresco/fresco-react-native:imagepipeline'),
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/android/support/v7/appcompat-orig:appcompat'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "toolbar",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("android_res/com/facebook/catalyst/appcompat:appcompat"),
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-drawee"),
react_native_dep("libraries/fresco/fresco-react-native:fresco-react-native"),
react_native_dep("libraries/fresco/fresco-react-native:imagepipeline"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/android/support/v7/appcompat-orig:appcompat"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,21 +1,20 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'view',
srcs = glob(['*.java']),
deps = [
YOGA_TARGET,
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/touch:touch'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "view",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
deps = [
YOGA_TARGET,
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/touch:touch"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,21 +1,20 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'viewpager',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('third-party/android/support/v4:lib-support-v4'),
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
react_native_target('java/com/facebook/react/views/scroll:scroll'),
],
visibility = [
'PUBLIC',
],
name = "viewpager",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
react_native_target("java/com/facebook/react/views/scroll:scroll"),
],
)

View File

@@ -1,19 +1,18 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'webview',
srcs = glob(['**/*.java']),
deps = [
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
react_native_dep('third-party/java/jsr-305:jsr-305'),
react_native_target('java/com/facebook/react/bridge:bridge'),
react_native_target('java/com/facebook/react/common:common'),
react_native_target('java/com/facebook/react/module/annotations:annotations'),
react_native_target('java/com/facebook/react/uimanager:uimanager'),
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
],
visibility = [
'PUBLIC',
],
name = "webview",
srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
react_native_target("java/com/facebook/react/bridge:bridge"),
react_native_target("java/com/facebook/react/common:common"),
react_native_target("java/com/facebook/react/module/annotations:annotations"),
react_native_target("java/com/facebook/react/uimanager:uimanager"),
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
],
)

View File

@@ -1,8 +1,7 @@
android_library(
name = 'systrace',
srcs = glob(['*.java']),
visibility = [
'PUBLIC',
],
name = "systrace",
srcs = glob(["*.java"]),
visibility = [
"PUBLIC",
],
)

View File

@@ -1,4 +1,4 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# This target is only used in open source
if IS_OSS_BUILD:

View File

@@ -1,20 +1,19 @@
cxx_library(
name = 'fbgloginit',
srcs = [
'glog_init.cpp',
],
xcode_public_headers_symlinks = True,
exported_headers = ['fb/glog_init.h'],
compiler_flags = [
'-fexceptions',
'-fno-omit-frame-pointer',
],
linker_flags = [
'-llog',
],
deps=[
'//xplat/third-party/glog:glog',
],
visibility=['PUBLIC'],
name = "fbgloginit",
srcs = [
"glog_init.cpp",
],
compiler_flags = [
"-fexceptions",
"-fno-omit-frame-pointer",
],
exported_headers = ["fb/glog_init.h"],
linker_flags = [
"-llog",
],
visibility = ["PUBLIC"],
xcode_public_headers_symlinks = True,
deps = [
"//xplat/third-party/glog:glog",
],
)

View File

@@ -6,12 +6,12 @@
# of patent rights can be found in the PATENTS file in the same directory.
cxx_library(
name = 'jni-hack',
force_static = True,
header_namespace = '',
exported_headers = [
'jni.h',
'real/jni.h',
],
visibility = ['PUBLIC'],
name = "jni-hack",
exported_headers = [
"jni.h",
"real/jni.h",
],
force_static = True,
header_namespace = "",
visibility = ["PUBLIC"],
)

View File

@@ -1,4 +1,4 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# This target is only used in open source
if IS_OSS_BUILD:

View File

@@ -1,22 +1,21 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# Temp workaround to get the build working e2e, Gradle builds them for us
prebuilt_native_library(
name = 'reactnative-libs',
native_libs = 'lib',
visibility = ['PUBLIC'],
name = "reactnative-libs",
native_libs = "lib",
visibility = ["PUBLIC"],
)
android_prebuilt_aar(
name = 'android-jsc',
aar = ':android-jsc-aar',
visibility = ['PUBLIC'],
name = "android-jsc",
aar = ":android-jsc-aar",
visibility = ["PUBLIC"],
)
remote_file(
name = 'android-jsc-aar',
url = 'mvn:org.webkit:android-jsc:aar:r174650',
sha1 = '880cedd93f43e0fc841f01f2fa185a63d9230f85',
name = "android-jsc-aar",
sha1 = "880cedd93f43e0fc841f01f2fa185a63d9230f85",
url = "mvn:org.webkit:android-jsc:aar:r174650",
)

View File

@@ -1,18 +1,17 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# TODO(cjhopman): Remove this target (or move the xreact target to this directory).
cxx_library(
name='jni',
soname = 'libreactnativejni.$(ext)',
header_namespace = 'react/jni',
srcs = [
'Dummy.cpp',
],
deps = [
react_native_target('jni/xreact/jni:jni'),
],
visibility = [
'PUBLIC',
],
name = "jni",
srcs = [
"Dummy.cpp",
],
header_namespace = "react/jni",
soname = "libreactnativejni.$(ext)",
visibility = [
"PUBLIC",
],
deps = [
react_native_target("jni/xreact/jni:jni"),
],
)

View File

@@ -3,12 +3,12 @@
# rules to model the Android NDK's built in libraries.
LIBS = (
'android',
'EGL',
'GLESv2',
'jnigraphics',
'log',
'z',
"android",
"EGL",
"GLESv2",
"jnigraphics",
"log",
"z",
)
for lib in LIBS:

View File

@@ -5,48 +5,63 @@
# libpthread is implicitly included in the android runtime so, when building
# on an android platform, we don't do anything.
prebuilt_cxx_library(
name = 'pthread',
header_only = True,
exported_platform_linker_flags = [
('android', []),
('default', ['-lpthread']),
('static', ['-lpthread']),
],
visibility = [
'PUBLIC',
],
name = "pthread",
exported_platform_linker_flags = [
(
"android",
[],
),
(
"default",
["-lpthread"],
),
(
"static",
["-lpthread"],
),
],
header_only = True,
visibility = [
"PUBLIC",
],
)
prebuilt_cxx_library(
name = 'dl',
header_only = True,
exported_linker_flags = [
'-ldl',
],
visibility = [
'PUBLIC',
],
name = "dl",
exported_linker_flags = [
"-ldl",
],
header_only = True,
visibility = [
"PUBLIC",
],
)
prebuilt_cxx_library(
name = 'm',
header_only = True,
exported_linker_flags = [
'-lm',
],
visibility = [
'PUBLIC',
],
name = "m",
exported_linker_flags = [
"-lm",
],
header_only = True,
visibility = [
"PUBLIC",
],
)
prebuilt_cxx_library(
name = 'rt',
header_only = True,
exported_platform_linker_flags = [
('android', []), # Empty, since `-lc` is implicit
('default', ['-lrt']),
],
visibility = [
'PUBLIC',
],
)
name = "rt",
exported_platform_linker_flags = [
(
"android",
[],
), # Empty, since `-lc` is implicit
(
"default",
["-lrt"],
),
],
header_only = True,
visibility = [
"PUBLIC",
],
)

View File

@@ -1,51 +1,53 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
EXPORTED_HEADERS = [
'CxxModuleWrapper.h',
'JSLoader.h',
'NativeArray.h',
'NativeCommon.h',
'NativeMap.h',
'ReadableNativeArray.h',
'ReadableNativeMap.h',
'WritableNativeArray.h',
'WritableNativeMap.h',
"CxxModuleWrapper.h",
"JSLoader.h",
"NativeArray.h",
"NativeCommon.h",
"NativeMap.h",
"ReadableNativeArray.h",
"ReadableNativeMap.h",
"WritableNativeArray.h",
"WritableNativeMap.h",
]
cxx_library(
name='jni',
soname = 'libreactnativejnifb.$(ext)',
header_namespace = 'xreact/jni',
deps = JSC_DEPS + [
'//native/fb:fb',
'//native/third-party/android-ndk:android',
'//xplat/folly:molly',
'//xplat/fbsystrace:fbsystrace',
react_native_xplat_target('cxxreact:bridge'),
react_native_xplat_target('cxxreact:module'),
react_native_xplat_target('inspector:inspector'),
],
srcs = glob(['*.cpp']),
xcode_public_headers_symlinks = True,
exported_headers = EXPORTED_HEADERS,
headers = glob(['*.h'], excludes=EXPORTED_HEADERS),
preprocessor_flags = [
'-DLOG_TAG="ReactNativeJNI"',
'-DWITH_FBSYSTRACE=1',
'-DWITH_INSPECTOR=1',
],
compiler_flags = [
'-Wall',
'-Werror',
'-fexceptions',
'-std=c++1y',
'-fvisibility=hidden',
'-frtti',
'-Wno-pessimizing-move',
'-Wno-inconsistent-missing-override',
],
visibility = [
'PUBLIC',
],
name = "jni",
srcs = glob(["*.cpp"]),
compiler_flags = [
"-Wall",
"-Werror",
"-fexceptions",
"-std=c++1y",
"-fvisibility=hidden",
"-frtti",
"-Wno-pessimizing-move",
"-Wno-inconsistent-missing-override",
],
exported_headers = EXPORTED_HEADERS,
header_namespace = "xreact/jni",
headers = glob(
["*.h"],
excludes = EXPORTED_HEADERS,
),
preprocessor_flags = [
"-DLOG_TAG=\"ReactNativeJNI\"",
"-DWITH_FBSYSTRACE=1",
"-DWITH_INSPECTOR=1",
],
soname = "libreactnativejnifb.$(ext)",
visibility = [
"PUBLIC",
],
xcode_public_headers_symlinks = True,
deps = JSC_DEPS + [
"//native/fb:fb",
"//native/third-party/android-ndk:android",
"//xplat/folly:molly",
"//xplat/fbsystrace:fbsystrace",
react_native_xplat_target("cxxreact:bridge"),
react_native_xplat_target("cxxreact:module"),
react_native_xplat_target("inspector:inspector"),
],
)

View File

@@ -1,21 +1,20 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
cxx_library(
name = 'perftests',
srcs = [ 'OnLoad.cpp' ],
soname = 'libnativereactperftests.$(ext)',
compiler_flags = [
'-fexceptions',
'-std=c++1y',
],
deps = [
'//native:base',
'//native/fb:fb',
'//xplat/folly:molly',
react_native_xplat_target('cxxreact:module'),
],
visibility = [
'//instrumentation_tests/com/facebook/react/...',
],
name = "perftests",
srcs = ["OnLoad.cpp"],
compiler_flags = [
"-fexceptions",
"-std=c++1y",
],
soname = "libnativereactperftests.$(ext)",
visibility = [
"//instrumentation_tests/com/facebook/react/...",
],
deps = [
"//native:base",
"//native/fb:fb",
"//xplat/folly:molly",
react_native_xplat_target("cxxreact:module"),
],
)

View File

@@ -1,10 +1,9 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_library(
name = 'logging',
name = "logging",
exported_deps = [
react_native_dep('libraries/fresco/fresco-react-native:fbcore'),
react_native_dep("libraries/fresco/fresco-react-native:fbcore"),
],
visibility = ['//ReactAndroid/...',],
visibility = ["//ReactAndroid/..."],
)

View File

@@ -1,162 +1,162 @@
android_library(
name = 'powermock',
name = "powermock",
exported_deps = [
':javassist',
':mockito-all',
':powermock-api-mockito',
':powermock-api-support',
':powermock-classloading-base',
':powermock-classloading-xstream',
':powermock-core',
':powermock-module-junit4-rule',
':powermock-reflect',
':xmlpull',
':xpp3',
':xstream',
":javassist",
":mockito-all",
":powermock-api-mockito",
":powermock-api-support",
":powermock-classloading-base",
":powermock-classloading-xstream",
":powermock-core",
":powermock-module-junit4-rule",
":powermock-reflect",
":xmlpull",
":xpp3",
":xstream",
],
visibility = ['//ReactAndroid/...',],
visibility = ["//ReactAndroid/..."],
)
prebuilt_jar(
name = 'powermock-core',
binary_jar = ':download-powermock-core',
visibility = ['//ReactAndroid/...',],
name = "powermock-core",
binary_jar = ":download-powermock-core",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-core',
url = 'mvn:org.powermock:powermock-core:jar:1.6.2',
sha1 = 'ea04e79244e19dcf0c3ccf6863c5b028b4b58c9c',
name = "download-powermock-core",
sha1 = "ea04e79244e19dcf0c3ccf6863c5b028b4b58c9c",
url = "mvn:org.powermock:powermock-core:jar:1.6.2",
)
prebuilt_jar(
name = 'powermock-api-mockito',
binary_jar = ':download-powermock-api-mockito',
visibility = ['//ReactAndroid/...',],
name = "powermock-api-mockito",
binary_jar = ":download-powermock-api-mockito",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-api-mockito',
url = 'mvn:org.powermock:powermock-api-mockito:jar:1.6.2',
sha1 = 'c213230ae20a7b422f3d622a261d0e3427d2464c',
name = "download-powermock-api-mockito",
sha1 = "c213230ae20a7b422f3d622a261d0e3427d2464c",
url = "mvn:org.powermock:powermock-api-mockito:jar:1.6.2",
)
prebuilt_jar(
name = 'powermock-api-support',
binary_jar = ':download-powermock-api-support',
visibility = ['//ReactAndroid/...',],
name = "powermock-api-support",
binary_jar = ":download-powermock-api-support",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-api-support',
url = 'mvn:org.powermock:powermock-api-support:jar:1.6.2',
sha1 = '93b21413b4ee99b7bc0dd34e1416fdca96866aaf',
name = "download-powermock-api-support",
sha1 = "93b21413b4ee99b7bc0dd34e1416fdca96866aaf",
url = "mvn:org.powermock:powermock-api-support:jar:1.6.2",
)
prebuilt_jar(
name = 'powermock-module-junit4-rule',
binary_jar = ':download-powermock-module-junit4-rule',
visibility = ['//ReactAndroid/...',],
name = "powermock-module-junit4-rule",
binary_jar = ":download-powermock-module-junit4-rule",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-module-junit4-rule',
url = 'mvn:org.powermock:powermock-module-junit4-rule:jar:1.6.2',
sha1 = '4847638c5729b9f203e21144b0bdb5d34d888473',
name = "download-powermock-module-junit4-rule",
sha1 = "4847638c5729b9f203e21144b0bdb5d34d888473",
url = "mvn:org.powermock:powermock-module-junit4-rule:jar:1.6.2",
)
prebuilt_jar(
name = 'powermock-classloading-xstream',
binary_jar = ':download-powermock-classloading-xstream',
visibility = ['//ReactAndroid/...',],
name = "powermock-classloading-xstream",
binary_jar = ":download-powermock-classloading-xstream",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-classloading-xstream',
url = 'mvn:org.powermock:powermock-classloading-xstream:jar:1.6.2',
sha1 = '3ced31cd7024fe365b9f3c8082d22c02434577da',
name = "download-powermock-classloading-xstream",
sha1 = "3ced31cd7024fe365b9f3c8082d22c02434577da",
url = "mvn:org.powermock:powermock-classloading-xstream:jar:1.6.2",
)
prebuilt_jar(
name = 'powermock-classloading-base',
binary_jar = ':download-powermock-classloading-base',
visibility = ['//ReactAndroid/...',],
name = "powermock-classloading-base",
binary_jar = ":download-powermock-classloading-base",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-classloading-base',
url = 'mvn:org.powermock:powermock-classloading-base:jar:1.6.2',
sha1 = 'c8bfc10731a02d3b241892cf2c334a754d473ca7',
name = "download-powermock-classloading-base",
sha1 = "c8bfc10731a02d3b241892cf2c334a754d473ca7",
url = "mvn:org.powermock:powermock-classloading-base:jar:1.6.2",
)
prebuilt_jar(
name = 'xstream',
binary_jar = ':download-xstream',
visibility = ['//ReactAndroid/...',],
name = "xstream",
binary_jar = ":download-xstream",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-xstream',
url = 'mvn:com.thoughtworks.xstream:xstream:jar:1.4.2',
sha1 = '97e5013f391487cce4de6b0eebcde21549e91872',
name = "download-xstream",
sha1 = "97e5013f391487cce4de6b0eebcde21549e91872",
url = "mvn:com.thoughtworks.xstream:xstream:jar:1.4.2",
)
prebuilt_jar(
name = 'powermock-reflect',
binary_jar = ':download-powermock-reflect',
visibility = ['//ReactAndroid/...',],
name = "powermock-reflect",
binary_jar = ":download-powermock-reflect",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-powermock-reflect',
url = 'mvn:org.powermock:powermock-reflect:jar:1.6.2',
sha1 = '1af1bbd1207c3ecdcf64973e6f9d57dcd17cc145',
name = "download-powermock-reflect",
sha1 = "1af1bbd1207c3ecdcf64973e6f9d57dcd17cc145",
url = "mvn:org.powermock:powermock-reflect:jar:1.6.2",
)
prebuilt_jar(
name = 'javassist',
binary_jar = ':download-javassist',
visibility = ['//ReactAndroid/...',],
name = "javassist",
binary_jar = ":download-javassist",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-javassist',
url = 'mvn:org.javassist:javassist:jar:3.20.0-GA',
sha1 = 'a9cbcdfb7e9f86fbc74d3afae65f2248bfbf82a0',
name = "download-javassist",
sha1 = "a9cbcdfb7e9f86fbc74d3afae65f2248bfbf82a0",
url = "mvn:org.javassist:javassist:jar:3.20.0-GA",
)
prebuilt_jar(
name = 'mockito-all',
binary_jar = ':download-mockito-all',
visibility = ['//ReactAndroid/...',],
name = "mockito-all",
binary_jar = ":download-mockito-all",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-mockito-all',
url = 'mvn:org.mockito:mockito-all:jar:1.10.19',
sha1 = '539df70269cc254a58cccc5d8e43286b4a73bf30',
name = "download-mockito-all",
sha1 = "539df70269cc254a58cccc5d8e43286b4a73bf30",
url = "mvn:org.mockito:mockito-all:jar:1.10.19",
)
prebuilt_jar(
name = 'xmlpull',
binary_jar = ':download-xmlpull',
visibility = ['//ReactAndroid/...',],
name = "xmlpull",
binary_jar = ":download-xmlpull",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-xmlpull',
url = 'mvn:xmlpull:xmlpull:jar:1.1.3.1',
sha1 = '2b8e230d2ab644e4ecaa94db7cdedbc40c805dfa',
name = "download-xmlpull",
sha1 = "2b8e230d2ab644e4ecaa94db7cdedbc40c805dfa",
url = "mvn:xmlpull:xmlpull:jar:1.1.3.1",
)
prebuilt_jar(
name = 'xpp3',
binary_jar = ':download-xpp3',
visibility = ['//ReactAndroid/...',],
name = "xpp3",
binary_jar = ":download-xpp3",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-xpp3',
url = 'mvn:xpp3:xpp3_min:jar:1.1.4c',
sha1 = '19d4e90b43059058f6e056f794f0ea4030d60b86',
name = "download-xpp3",
sha1 = "19d4e90b43059058f6e056f794f0ea4030d60b86",
url = "mvn:xpp3:xpp3_min:jar:1.1.4c",
)

View File

@@ -1,93 +1,93 @@
android_prebuilt_aar(
name = 'fresco-react-native',
aar = ':fresco-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "fresco-react-native",
aar = ":fresco-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'fresco-binary-aar',
url = 'mvn:com.facebook.fresco:fresco:aar:1.0.1',
sha1 = '87d86ce36812b7b859f6176e253b71b54d4a39e3',
name = "fresco-binary-aar",
sha1 = "87d86ce36812b7b859f6176e253b71b54d4a39e3",
url = "mvn:com.facebook.fresco:fresco:aar:1.0.1",
)
android_prebuilt_aar(
name = 'fresco-drawee',
aar = ':drawee-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "fresco-drawee",
aar = ":drawee-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'drawee-binary-aar',
url = 'mvn:com.facebook.fresco:drawee:aar:1.0.1',
sha1 = '7eea1c7dd619e7621f6e818c007c30970ac31575',
name = "drawee-binary-aar",
sha1 = "7eea1c7dd619e7621f6e818c007c30970ac31575",
url = "mvn:com.facebook.fresco:drawee:aar:1.0.1",
)
android_library(
name = 'imagepipeline',
exported_deps = [
':bolts',
':imagepipeline-base',
':imagepipeline-core',
],
visibility = ['//ReactAndroid/...',],
name = "imagepipeline",
exported_deps = [
":bolts",
":imagepipeline-base",
":imagepipeline-core",
],
visibility = ["//ReactAndroid/..."],
)
android_prebuilt_aar(
name = 'imagepipeline-base',
aar = ':imagepipeline-base-aar',
visibility = ['//ReactAndroid/...',],
name = "imagepipeline-base",
aar = ":imagepipeline-base-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'imagepipeline-base-aar',
url = 'mvn:com.facebook.fresco:imagepipeline-base:aar:1.0.1',
sha1 = '44d5e4b7c07afaee610ea2dda29535455cd1a20e',
name = "imagepipeline-base-aar",
sha1 = "44d5e4b7c07afaee610ea2dda29535455cd1a20e",
url = "mvn:com.facebook.fresco:imagepipeline-base:aar:1.0.1",
)
android_prebuilt_aar(
name = 'imagepipeline-core',
aar = ':imagepipeline-aar',
visibility = ['//ReactAndroid/...',],
name = "imagepipeline-core",
aar = ":imagepipeline-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'imagepipeline-aar',
url = 'mvn:com.facebook.fresco:imagepipeline:aar:1.0.1',
sha1 = '78e637099db724c3963df4515d014c9d7232469e',
name = "imagepipeline-aar",
sha1 = "78e637099db724c3963df4515d014c9d7232469e",
url = "mvn:com.facebook.fresco:imagepipeline:aar:1.0.1",
)
prebuilt_jar(
name = 'bolts',
binary_jar = ':download-bolts',
visibility = ['//ReactAndroid/...',],
name = "bolts",
binary_jar = ":download-bolts",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-bolts',
url = 'mvn:com.parse.bolts:bolts-tasks:jar:1.4.0',
sha1 = 'd85884acf6810a3bbbecb587f239005cbc846dc4',
name = "download-bolts",
sha1 = "d85884acf6810a3bbbecb587f239005cbc846dc4",
url = "mvn:com.parse.bolts:bolts-tasks:jar:1.4.0",
)
android_prebuilt_aar(
name = 'fbcore',
aar = ':fbcore-aar',
visibility = ['//ReactAndroid/...',],
name = "fbcore",
aar = ":fbcore-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'fbcore-aar',
url = 'mvn:com.facebook.fresco:fbcore:aar:1.0.1',
sha1 = '25cdfb603c04e96486446da625cf8a90666eb55f',
name = "fbcore-aar",
sha1 = "25cdfb603c04e96486446da625cf8a90666eb55f",
url = "mvn:com.facebook.fresco:fbcore:aar:1.0.1",
)
android_prebuilt_aar(
name = 'imagepipeline-okhttp3',
aar = ':imagepipeline-okhttp3-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "imagepipeline-okhttp3",
aar = ":imagepipeline-okhttp3-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'imagepipeline-okhttp3-binary-aar',
url = 'mvn:com.facebook.fresco:imagepipeline-okhttp3:aar:1.0.1',
sha1 = '361e123fd114481ee037199db21337f06994f36e',
name = "imagepipeline-okhttp3-binary-aar",
sha1 = "361e123fd114481ee037199db21337f06994f36e",
url = "mvn:com.facebook.fresco:imagepipeline-okhttp3:aar:1.0.1",
)

View File

@@ -1,11 +1,11 @@
android_prebuilt_aar(
name = 'soloader',
aar = ':soloader-binary-aar',
visibility = ['PUBLIC'],
name = "soloader",
aar = ":soloader-binary-aar",
visibility = ["PUBLIC"],
)
remote_file(
name = 'soloader-binary-aar',
url = 'mvn:com.facebook.soloader:soloader:aar:0.1.0',
sha1 = '918573465c94c6bc9bad48ef259f1e0cd6543c1b',
name = "soloader-binary-aar",
sha1 = "918573465c94c6bc9bad48ef259f1e0cd6543c1b",
url = "mvn:com.facebook.soloader:soloader:aar:0.1.0",
)

View File

@@ -1,23 +1,23 @@
android_prebuilt_aar(
name = 'textlayoutbuilder',
aar = ':textlayoutbuilder-aar',
visibility = ['//ReactAndroid/...',],
name = "textlayoutbuilder",
aar = ":textlayoutbuilder-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'textlayoutbuilder-aar',
url = 'mvn:com.facebook.fbui.textlayoutbuilder:textlayoutbuilder:aar:1.0.0',
sha1 = '29bc8e5a1e2b33944b88277652ee83092ae1dbc0',
name = "textlayoutbuilder-aar",
sha1 = "29bc8e5a1e2b33944b88277652ee83092ae1dbc0",
url = "mvn:com.facebook.fbui.textlayoutbuilder:textlayoutbuilder:aar:1.0.0",
)
prebuilt_jar(
name = 'staticlayoutproxy',
binary_jar = ':staticlayoutproxy-jar',
visibility = ['//ReactAndroid/...',],
name = "staticlayoutproxy",
binary_jar = ":staticlayoutproxy-jar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'staticlayoutproxy-jar',
url = 'mvn:com.facebook.fbui.textlayoutbuilder:staticlayout-proxy:jar:1.0',
sha1 = 'f162442a19fff13995fbd51ba414d9ee05579080',
name = "staticlayoutproxy-jar",
sha1 = "f162442a19fff13995fbd51ba414d9ee05579080",
url = "mvn:com.facebook.fbui.textlayoutbuilder:staticlayout-proxy:jar:1.0",
)

View File

@@ -1,28 +1,28 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
android_resource(
name = 'devsupport',
res = 'devsupport',
package = 'com.facebook.react',
visibility = [
react_native_target('java/com/facebook/react/devsupport/...'),
],
name = "devsupport",
package = "com.facebook.react",
res = "devsupport",
visibility = [
react_native_target("java/com/facebook/react/devsupport/..."),
],
)
android_resource(
name = 'shell',
res = 'shell',
package = 'com.facebook.react',
visibility = [
'PUBLIC',
],
name = "shell",
package = "com.facebook.react",
res = "shell",
visibility = [
"PUBLIC",
],
)
android_resource(
name = 'modal',
res = 'views/modal',
package = 'com.facebook.react',
visibility = [
'PUBLIC',
],
name = "modal",
package = "com.facebook.react",
res = "views/modal",
visibility = [
"PUBLIC",
],
)

View File

@@ -1,11 +1,11 @@
prebuilt_jar(
name = 'android-support-annotations',
binary_jar = ':support-annotations-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "android-support-annotations",
binary_jar = ":support-annotations-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'support-annotations-binary-aar',
url = 'mvn:com.android.support:support-annotations:jar:23.4.0',
sha1 = 'ffbe55fdb2bb456b1485831706a9eac3300bb6b8',
name = "support-annotations-binary-aar",
sha1 = "ffbe55fdb2bb456b1485831706a9eac3300bb6b8",
url = "mvn:com.android.support:support-annotations:jar:23.4.0",
)

View File

@@ -1,23 +1,23 @@
android_prebuilt_aar(
name = 'lib-support-v4',
aar = ':lib-support-v4-binary-aar',
visibility = ['PUBLIC',],
name = "lib-support-v4",
aar = ":lib-support-v4-binary-aar",
visibility = ["PUBLIC"],
)
remote_file(
name = 'lib-support-v4-binary-aar',
url = 'mvn:com.android.support:support-v4:aar:23.4.0',
sha1 = '7a802deefef9561d90a440994c3e6eed81f2c241',
name = "lib-support-v4-binary-aar",
sha1 = "7a802deefef9561d90a440994c3e6eed81f2c241",
url = "mvn:com.android.support:support-v4:aar:23.4.0",
)
prebuilt_jar(
name = 'lib-support-annotations',
binary_jar = ':lib-support-annotations-binary-aar',
visibility = ['//ReactAndroid/...',],
name = "lib-support-annotations",
binary_jar = ":lib-support-annotations-binary-aar",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'lib-support-annotations-binary-aar',
url = 'mvn:com.android.support:support-annotations:jar:23.4.0',
sha1 = 'ffbe55fdb2bb456b1485831706a9eac3300bb6b8',
name = "lib-support-annotations-binary-aar",
sha1 = "ffbe55fdb2bb456b1485831706a9eac3300bb6b8",
url = "mvn:com.android.support:support-annotations:jar:23.4.0",
)

View File

@@ -1,4 +1,4 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# This is a bit messy and hopefully a temporary thing
# The problem is that Gradle extracts appcompat resources into app namespace, com.facebook.react
@@ -10,52 +10,52 @@ include_defs('//ReactAndroid/DEFS')
# All this mumbo jumbo will go away after t10182713
android_library(
name = 'appcompat',
deps = [
':res-for-appcompat',
],
visibility = [
'PUBLIC',
],
exported_deps = [
':classes-for-react-native',
],
name = "appcompat",
exported_deps = [
":classes-for-react-native",
],
visibility = [
"PUBLIC",
],
deps = [
":res-for-appcompat",
],
)
# still used by appcompat library internally, so we need both during the build
android_resource(
name = 'res-for-appcompat',
res = ':res-unpacker-cmd',
package = 'android.support.v7.appcompat',
visibility = ['//ReactAndroid/...',],
name = "res-for-appcompat",
package = "android.support.v7.appcompat",
res = ":res-unpacker-cmd",
visibility = ["//ReactAndroid/..."],
)
prebuilt_jar(
name = 'classes-for-react-native',
binary_jar = ':classes-unpacker-cmd',
visibility = ['//ReactAndroid/...',],
name = "classes-for-react-native",
binary_jar = ":classes-unpacker-cmd",
visibility = ["//ReactAndroid/..."],
)
genrule(
name = 'classes-unpacker-cmd',
cmd = '$(exe :aar-unpacker) $(location :appcompat-binary-aar) classes.jar $OUT',
out = 'classes.jar',
name = "classes-unpacker-cmd",
out = "classes.jar",
cmd = "$(exe :aar-unpacker) $(location :appcompat-binary-aar) classes.jar $OUT",
)
genrule(
name = 'res-unpacker-cmd',
cmd = '$(exe :aar-unpacker) $(location :appcompat-binary-aar) res/ $OUT',
out = 'res',
visibility = ['//ReactAndroid/...',],
name = "res-unpacker-cmd",
out = "res",
cmd = "$(exe :aar-unpacker) $(location :appcompat-binary-aar) res/ $OUT",
visibility = ["//ReactAndroid/..."],
)
python_binary(
name = 'aar-unpacker',
main = 'aar-unpacker.py',
name = "aar-unpacker",
main = "aar-unpacker.py",
)
remote_file(
name = 'appcompat-binary-aar',
url = 'mvn:com.android.support:appcompat-v7:aar:23.0.1',
sha1 = '7d659f671541394a8bc2b9f909950aa2a5ec87ff',
name = "appcompat-binary-aar",
sha1 = "7d659f671541394a8bc2b9f909950aa2a5ec87ff",
url = "mvn:com.android.support:appcompat-v7:aar:23.0.1",
)

View File

@@ -1,13 +1,13 @@
android_prebuilt_aar(
name = 'recyclerview',
aar = ':recyclerview-binary-aar',
name = "recyclerview",
aar = ":recyclerview-binary-aar",
visibility = [
'//ReactAndroid/...',
"//ReactAndroid/...",
],
)
remote_file(
name = 'recyclerview-binary-aar',
url = 'mvn:com.android.support:recyclerview-v7:aar:23.4.0',
sha1 = '61e4d99d2377402c45a3176120f800e53b20ab1b',
name = "recyclerview-binary-aar",
sha1 = "61e4d99d2377402c45a3176120f800e53b20ab1b",
url = "mvn:com.android.support:recyclerview-v7:aar:23.4.0",
)

View File

@@ -1,71 +1,71 @@
android_library(
name = 'asm',
exported_deps = [
':asm-analysis',
':asm-commons',
':asm-core',
':asm-tree',
':asm-util',
],
visibility = ['//ReactAndroid/...',],
name = "asm",
exported_deps = [
":asm-analysis",
":asm-commons",
":asm-core",
":asm-tree",
":asm-util",
],
visibility = ["//ReactAndroid/..."],
)
prebuilt_jar(
name = 'asm-core',
binary_jar = ':download-asm',
visibility = ['//ReactAndroid/...',],
name = "asm-core",
binary_jar = ":download-asm",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-asm',
url = 'mvn:org.ow2.asm:asm:jar:5.0.1',
sha1 = '2fd56467a018aafe6ec6a73ccba520be4a7e1565',
name = "download-asm",
sha1 = "2fd56467a018aafe6ec6a73ccba520be4a7e1565",
url = "mvn:org.ow2.asm:asm:jar:5.0.1",
)
prebuilt_jar(
name = 'asm-commons',
binary_jar = ':download-asm-commons',
visibility = ['//ReactAndroid/...',],
name = "asm-commons",
binary_jar = ":download-asm-commons",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-asm-commons',
url = 'mvn:org.ow2.asm:asm-commons:jar:5.0.1',
sha1 = '7b7147a390a93a14d2edfdcf3f7b0e87a0939c3e',
name = "download-asm-commons",
sha1 = "7b7147a390a93a14d2edfdcf3f7b0e87a0939c3e",
url = "mvn:org.ow2.asm:asm-commons:jar:5.0.1",
)
prebuilt_jar(
name = 'asm-tree',
binary_jar = ':download-asm-tree',
visibility = ['//ReactAndroid/...',],
name = "asm-tree",
binary_jar = ":download-asm-tree",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-asm-tree',
url = 'mvn:org.ow2.asm:asm-tree:jar:5.0.1',
sha1 = '1b1e6e9d869acd704056d0a4223071a511c619e6',
name = "download-asm-tree",
sha1 = "1b1e6e9d869acd704056d0a4223071a511c619e6",
url = "mvn:org.ow2.asm:asm-tree:jar:5.0.1",
)
prebuilt_jar(
name = 'asm-util',
binary_jar = ':download-asm-util',
visibility = ['//ReactAndroid/...',],
name = "asm-util",
binary_jar = ":download-asm-util",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-asm-util',
url = 'mvn:org.ow2.asm:asm-util:jar:5.0.1',
sha1 = '7c8caddfbd0b2d7b844f8fcc75175b9cb9cf4724',
name = "download-asm-util",
sha1 = "7c8caddfbd0b2d7b844f8fcc75175b9cb9cf4724",
url = "mvn:org.ow2.asm:asm-util:jar:5.0.1",
)
prebuilt_jar(
name = 'asm-analysis',
binary_jar = ':download-asm-analysis',
visibility = ['//ReactAndroid/...',],
name = "asm-analysis",
binary_jar = ":download-asm-analysis",
visibility = ["//ReactAndroid/..."],
)
remote_file(
name = 'download-asm-analysis',
url = 'mvn:org.ow2.asm:asm-analysis:jar:5.0.1',
sha1 = 'e286fbee48efacb4e7c175f7948d9d8b2ab52352',
name = "download-asm-analysis",
sha1 = "e286fbee48efacb4e7c175f7948d9d8b2ab52352",
url = "mvn:org.ow2.asm:asm-analysis:jar:5.0.1",
)

View File

@@ -1,11 +1,10 @@
include_defs('//ReactAndroid/DEFS')
include_defs("//ReactAndroid/DEFS")
# this lib was compiled by buck version : 6cbf2709778ea352a169d1c84e3ef2894dfa39ec
prebuilt_jar(
name = 'buck-android-support',
binary_jar = 'buck-android-support.jar',
visibility = [
react_native_integration_tests_target('...'),
],
name = "buck-android-support",
binary_jar = "buck-android-support.jar",
visibility = [
react_native_integration_tests_target("..."),
],
)

Some files were not shown because too many files have changed in this diff Show More