mirror of
https://github.com/status-im/react-native.git
synced 2025-02-05 06:04:15 +00:00
Remove all BUCK files
This commit is contained in:
parent
90c7ad112f
commit
e8659b3602
@ -1,15 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'csslayout',
|
||||
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'],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':csslayout',
|
||||
)
|
@ -1,17 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'jni',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
|
||||
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':jni',
|
||||
)
|
@ -1,11 +0,0 @@
|
||||
android_library(
|
||||
name = 'perftest',
|
||||
srcs = glob(['*.java']),
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':perftest',
|
||||
)
|
@ -1,14 +0,0 @@
|
||||
android_library(
|
||||
name = 'annotations',
|
||||
srcs = glob(['*.java']),
|
||||
proguard_config = 'proguard_annotations.pro',
|
||||
deps = [
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':annotations',
|
||||
)
|
@ -1,14 +0,0 @@
|
||||
android_library(
|
||||
name = 'quicklog',
|
||||
srcs = glob(['*.java']),
|
||||
exported_deps = [
|
||||
'//java/com/facebook/quicklog/identifiers:identifiers',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':quicklog',
|
||||
)
|
@ -1,11 +0,0 @@
|
||||
android_library(
|
||||
name = 'identifiers',
|
||||
srcs = glob(['*.java']),
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':identifiers',
|
||||
)
|
@ -1,27 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'react',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
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/modules/core:core'),
|
||||
react_native_target('java/com/facebook/react/modules/debug:debug'),
|
||||
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_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',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':react',
|
||||
)
|
@ -1,18 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'animation',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC'
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':animation',
|
||||
)
|
@ -1,41 +0,0 @@
|
||||
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
|
||||
# within the zip file and relying on Buck to merge its contents into the APK,
|
||||
# our JS bundles arrive in a place accessible by the AssetManager at runtime.
|
||||
|
||||
python_binary(
|
||||
name = 'package_js',
|
||||
main = 'package_js.py',
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
android_library(
|
||||
name = 'bridge',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
react_native_target('jni/react/jni:jni'),
|
||||
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
|
||||
react_native_dep('java/com/facebook/systrace:systrace'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jackson:core'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
react_native_dep('third-party/java/okhttp:okhttp-ws'),
|
||||
],
|
||||
exported_deps = [
|
||||
react_native_dep('java/com/facebook/jni:jni'),
|
||||
react_native_dep('java/com/facebook/proguard/annotations:annotations'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':bridge',
|
||||
)
|
@ -1,29 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'common',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
':build_config',
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
android_build_config(
|
||||
name = 'build_config',
|
||||
package = 'com.facebook.react',
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
values = [
|
||||
'boolean IS_INTERNAL_BUILD = true',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':common',
|
||||
)
|
@ -1,31 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'devsupport',
|
||||
manifest = 'AndroidManifest.xml',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
react_native_target('res:devsupport'),
|
||||
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/debug:debug'),
|
||||
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:okhttp'),
|
||||
react_native_dep('third-party/java/okio:okio'),
|
||||
],
|
||||
visibility = [
|
||||
react_native_target('java/com/facebook/react/...'),
|
||||
'//instrumentation_tests/com/facebook/catalyst/...',
|
||||
'//java/com/facebook/catalyst/...',
|
||||
'//java/com/facebook/groups/treehouse/react/...',
|
||||
'//java/com/facebook/fbreact/...',
|
||||
'//javatests/com/facebook/catalyst/...',
|
||||
'//javatests/com/facebook/react/...',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':devsupport',
|
||||
)
|
@ -1,20 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'common',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':common',
|
||||
)
|
@ -1,22 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'core',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
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/uimanager:uimanager'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':core',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'debug',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
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_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':debug',
|
||||
)
|
@ -1,28 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'fresco',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/modules/common:common'),
|
||||
react_native_target('java/com/facebook/react/modules/network:network'),
|
||||
react_native_dep('java/com/facebook/systrace:systrace'),
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/internal:internal',
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/soloader:soloader',
|
||||
'//libraries/fresco/drawee-backends/drawee-pipeline/src/main/java/com/facebook/drawee/backends/pipeline:pipeline',
|
||||
'//libraries/fresco/imagepipeline-backends/imagepipeline-okhttp/src/main/java/com/facebook/imagepipeline/backends/okhttp:okhttp',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/cache/common:common',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/cache/disk:disk',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/core:core',
|
||||
'//libraries/soloader/java/com/facebook/soloader:soloader',
|
||||
'//third-party/java/okhttp:okhttp',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':fresco',
|
||||
)
|
@ -1,24 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'network',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/modules/core:core'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
'//third-party/java/android/support/v4:lib-support-v4',
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
'//third-party/java/okhttp:okhttp',
|
||||
'//third-party/java/okio:okio',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':network',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'storage',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
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/common:common'),
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':storage',
|
||||
)
|
@ -1,19 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'systeminfo',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':systeminfo',
|
||||
)
|
@ -1,19 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'toast',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':toast',
|
||||
)
|
@ -1,22 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'websocket',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
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/core:core'),
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
'//third-party/java/okhttp:okhttp-ws',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':websocket',
|
||||
)
|
@ -1,43 +0,0 @@
|
||||
include_defs('//instrumentation_tests/DEFS')
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'shell',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('res:shell'),
|
||||
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/devsupport:devsupport'),
|
||||
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/progressbar:progressbar'),
|
||||
react_native_target('java/com/facebook/react/views/scroll:scroll'),
|
||||
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/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/modules/core:core'),
|
||||
react_native_target('java/com/facebook/react/modules/debug:debug'),
|
||||
react_native_target('java/com/facebook/react/modules/fresco:fresco'),
|
||||
react_native_target('java/com/facebook/react/modules/network:network'),
|
||||
react_native_target('java/com/facebook/react/modules/storage:storage'),
|
||||
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/modules/websocket:websocket'),
|
||||
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
|
||||
react_native_dep('third-party/java/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',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':shell',
|
||||
)
|
@ -1,17 +0,0 @@
|
||||
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'
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':touch',
|
||||
)
|
@ -1,25 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'uimanager',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
||||
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/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/touch:touch'),
|
||||
react_native_dep('java/com/facebook/systrace:systrace'),
|
||||
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/android/support/v4:lib-support-v4'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':uimanager',
|
||||
)
|
@ -1,22 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'drawer',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
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/views/scroll:scroll'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
'//third-party/java/android/support/v4:lib-support-v4',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':drawer',
|
||||
)
|
@ -1,29 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'image',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/controller:controller',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/drawable:drawable',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/generic:generic',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/interfaces:interfaces',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/view:view',
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/references:references',
|
||||
'//libraries/fbcore/src/main/java/com/facebook/common/util:util',
|
||||
'//libraries/fresco/drawee-backends/drawee-pipeline/src/main/java/com/facebook/drawee/backends/pipeline:pipeline',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/bitmaps:bitmaps',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/common:common',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/request:request',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':image',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'progressbar',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':progressbar',
|
||||
)
|
@ -1,25 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'recyclerview',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
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/touch:touch'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
react_native_target('java/com/facebook/react/views/scroll:scroll'),
|
||||
react_native_target('java/com/facebook/react/views/view:view'),
|
||||
'//third-party/android-support-v7/recyclerview:recyclerview',
|
||||
'//third-party/java/android/support/v4:lib-support-v4',
|
||||
'//third-party/java/infer-annotations:infer-annotations',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':recyclerview',
|
||||
)
|
@ -1,23 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'scroll',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
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/views/view:view'),
|
||||
react_native_target('java/com/facebook/react/touch:touch'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
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/android/support/v4:lib-support-v4'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':scroll',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'switchview',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
'//third-party/android-support-for-standalone-apps/v7/appcompat:appcompat-23.1',
|
||||
'//third-party/android-support-for-standalone-apps/v7/appcompat:res-for-react-native',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':switchview',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'text',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':text',
|
||||
)
|
@ -1,23 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'textinput',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
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/views/text:text'),
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/modules/core:core'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':textinput',
|
||||
)
|
@ -1,33 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'toolbar',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/bitmaps:bitmaps',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/common:common',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/request:request',
|
||||
'//libraries/imagepipeline/src/main/java/com/facebook/imagepipeline/image:image',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/controller:controller',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/drawable:drawable',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/generic:generic',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/interfaces:interfaces',
|
||||
'//libraries/drawee/src/main/java/com/facebook/drawee/view:view',
|
||||
'//libraries/fresco/drawee-backends/drawee-pipeline/src/main/java/com/facebook/drawee/backends/pipeline:pipeline',
|
||||
'//third-party/android-support-for-standalone-apps/v7/appcompat:appcompat-23.1',
|
||||
'//third-party/android-support-for-standalone-apps/v7/appcompat:res-for-react-native',
|
||||
'//third-party/java/android/support/v4:lib-support-v4',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':toolbar',
|
||||
)
|
@ -1,22 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'view',
|
||||
srcs = glob(['*.java']),
|
||||
deps = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('java/com/facebook/react/common:common'),
|
||||
react_native_target('java/com/facebook/csslayout:csslayout'),
|
||||
react_native_target('java/com/facebook/react/touch:touch'),
|
||||
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
||||
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':view',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'viewpager',
|
||||
srcs = glob(['**/*.java']),
|
||||
deps = [
|
||||
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/views/scroll:scroll'),
|
||||
'//third-party/java/android/support/v4:lib-support-v4',
|
||||
'//third-party/java/jsr-305:jsr-305',
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':viewpager',
|
||||
)
|
@ -1,20 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_library(
|
||||
name = 'soloader',
|
||||
srcs = glob(['*.java']),
|
||||
proguard_config = 'soloader.pro',
|
||||
deps = [
|
||||
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
||||
# Be very careful adding new dependencies here, because this code
|
||||
# has to run very early in the app startup process.
|
||||
# Definitely do *not* depend on lib-base or guava.
|
||||
],
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':soloader',
|
||||
)
|
@ -1,11 +0,0 @@
|
||||
android_library(
|
||||
name = 'systrace',
|
||||
srcs = glob(['*.java']),
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':systrace',
|
||||
)
|
@ -1,57 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
# We depend on JSC, support the same platforms
|
||||
SUPPORTED_PLATFORMS = '^android-(armv7|x86)$'
|
||||
|
||||
cxx_library(
|
||||
name = 'react',
|
||||
soname = 'libreactnative.so',
|
||||
header_namespace = 'react',
|
||||
supported_platforms_regex = SUPPORTED_PLATFORMS,
|
||||
force_static = True,
|
||||
srcs = [
|
||||
'Bridge.cpp',
|
||||
'Value.cpp',
|
||||
'MethodCall.cpp',
|
||||
'JSCHelpers.cpp',
|
||||
'JSCExecutor.cpp',
|
||||
'JSCTracing.cpp',
|
||||
'JSCPerfLogging.cpp',
|
||||
'JSCLegacyProfiler.cpp',
|
||||
],
|
||||
headers = [
|
||||
'JSCTracing.h',
|
||||
'JSCPerfLogging.h',
|
||||
'JSCLegacyProfiler.h',
|
||||
],
|
||||
exported_headers = [
|
||||
'Bridge.h',
|
||||
'Executor.h',
|
||||
'JSCExecutor.h',
|
||||
'JSCHelpers.h',
|
||||
'MethodCall.h',
|
||||
'Value.h',
|
||||
],
|
||||
preprocessor_flags = [
|
||||
'-DLOG_TAG="ReactNative"',
|
||||
'-DWITH_JSC_EXTRA_TRACING=1',
|
||||
'-DWITH_FBSYSTRACE=1',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-Wall',
|
||||
'-std=c++11',
|
||||
'-fexceptions',
|
||||
'-fvisibility=hidden',
|
||||
],
|
||||
visibility = [
|
||||
react_native_target('jni/react/jni:jni'),
|
||||
],
|
||||
deps = [
|
||||
'//native/fb:fb',
|
||||
'//xplat/fbsystrace:fbsystrace',
|
||||
'//native/jni:jni',
|
||||
'//native/third-party/jsc:jsc',
|
||||
'//native/third-party/jsc:jsc_legacy_profiler',
|
||||
'//xplat/folly:json',
|
||||
],
|
||||
)
|
@ -1,53 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
# We depend on JSC, support the same platforms
|
||||
SUPPORTED_PLATFORMS = '^android-(armv7|x86)$'
|
||||
|
||||
cxx_library(
|
||||
name = 'jni',
|
||||
soname = 'libreactnativejni.so',
|
||||
header_namespace = 'react/jni',
|
||||
supported_platforms_regex = SUPPORTED_PLATFORMS,
|
||||
srcs = [
|
||||
'NativeArray.cpp',
|
||||
'OnLoad.cpp',
|
||||
'ProxyExecutor.cpp',
|
||||
'JSLoader.cpp',
|
||||
],
|
||||
headers = [
|
||||
'ProxyExecutor.h',
|
||||
'JSLoader.h',
|
||||
],
|
||||
exported_headers = [
|
||||
'NativeArray.h',
|
||||
'ReadableNativeArray.h',
|
||||
],
|
||||
preprocessor_flags = [
|
||||
'-DLOG_TAG="ReactNativeJNI"',
|
||||
'-DWITH_FBSYSTRACE=1',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-Wall',
|
||||
'-Werror',
|
||||
'-fexceptions',
|
||||
'-std=c++11',
|
||||
'-fvisibility=hidden',
|
||||
'-frtti',
|
||||
],
|
||||
visibility = [
|
||||
react_native_target('java/com/facebook/react/bridge:bridge'),
|
||||
react_native_target('jni/react/...'),
|
||||
react_native_dep('native/react/...')
|
||||
],
|
||||
deps = [
|
||||
react_native_target('jni/react:react'),
|
||||
'//native/jni:jni',
|
||||
'//native/third-party/jsc:jsc',
|
||||
'//native/third-party/jsc:jsc_legacy_profiler',
|
||||
'//xplat/folly:json',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':jni',
|
||||
)
|
@ -1,21 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
cxx_library(
|
||||
name = 'perftests',
|
||||
srcs = [ 'OnLoad.cpp' ],
|
||||
soname = 'libreactnativetests.so',
|
||||
preprocessor_flags = [
|
||||
'-DLOG_TAG=\"ReactPerftests\"',
|
||||
],
|
||||
visibility = [
|
||||
'//instrumentation_tests/com/facebook/catalyst/...',
|
||||
],
|
||||
deps = [
|
||||
'//native:base',
|
||||
'//native/jni:jni',
|
||||
],
|
||||
)
|
||||
|
||||
project_config(
|
||||
src_target = ':perftests',
|
||||
)
|
@ -1,19 +0,0 @@
|
||||
include_defs('//ReactAndroid/DEFS')
|
||||
|
||||
android_resource(
|
||||
name = 'devsupport',
|
||||
res = 'devsupport',
|
||||
package = 'com.facebook.react',
|
||||
visibility = [
|
||||
react_native_target('java/com/facebook/react/devsupport/...'),
|
||||
],
|
||||
)
|
||||
|
||||
android_resource(
|
||||
name = 'shell',
|
||||
res = 'shell',
|
||||
package = 'com.facebook.react',
|
||||
visibility = [
|
||||
'PUBLIC',
|
||||
],
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user