clean up buck dep order

Reviewed By: adamjernst

Differential Revision: D4404770

fbshipit-source-id: d5801cc2b529f513e1531840310b884af951d702
This commit is contained in:
Michael Lee
2017-01-11 14:39:26 -08:00
committed by Facebook Github Bot
parent f839b58c20
commit 55f0294b7d
21 changed files with 55 additions and 66 deletions

View File

@@ -1,11 +1,11 @@
android_library(
name = 'asm',
exported_deps = [
':asm-core',
':asm-commons',
':asm-util',
':asm-analysis',
':asm-tree',
':asm-analysis',
':asm-commons',
':asm-core',
':asm-tree',
':asm-util',
],
visibility = ['//ReactAndroid/...',],
)

View File

@@ -3,8 +3,8 @@ include_defs('//ReactAndroid/DEFS')
android_library(
name = 'junit',
exported_deps = [
':junit-core',
':hamcrest',
':junit-core',
],
visibility = ['//ReactAndroid/...',],
)

View File

@@ -3,19 +3,19 @@ include_defs('//ReactAndroid/DEFS')
android_library(
name = 'robolectric',
exported_deps = [
':robolectric-core',
':robolectric-resources',
':robolectric-annotations',
':robolectric-utils',
':bouncycastle',
':vtd-xml',
':icu',
':android-all-4.1.2_r1-robolectric-0',
':json-20080701',
':tagsoup-1.2',
':shadows-core-3.0-16',
react_native_dep('third-party/java/asm:asm'),
react_native_dep('third-party/java/sqlite:sqlite'),
':android-all-4.1.2_r1-robolectric-0',
':bouncycastle',
':icu',
':json-20080701',
':robolectric-annotations',
':robolectric-core',
':robolectric-resources',
':robolectric-utils',
':shadows-core-3.0-16',
':tagsoup-1.2',
':vtd-xml',
react_native_dep('third-party/java/asm:asm'),
react_native_dep('third-party/java/sqlite:sqlite'),
],
visibility = ['//ReactAndroid/...',],
)