blob: fc716111f4e7dbd8d7a31d626197f6ce602e1b2e [file] [log] [blame]
java_library(
name = 'stream',
srcs = [
'AppendingZipOutputStream.java',
'ByteIo.java',
'CentralDirectory.java',
'CustomZipOutputStream.java',
'CustomZipEntry.java',
'EntryAccounting.java',
'OverwritingZipOutputStream.java',
'ZipOutputStreams.java',
],
deps = [
'//lib:guava',
'//src/com/facebook/buck/timing:timing',
'//src/com/facebook/buck/util:exceptions',
],
visibility = ['PUBLIC'],
)
java_library(
name = 'steps',
srcs = glob(['*Step.java']),
deps = [
':stream',
'//lib:guava',
'//lib:jsr305',
'//src/com/facebook/buck/event:event',
'//src/com/facebook/buck/step:step',
'//src/com/facebook/buck/step/fs:fs',
'//src/com/facebook/buck/util:exceptions',
'//src/com/facebook/buck/util:io',
],
visibility = [
'//src/com/facebook/buck/android/...',
'//test/com/facebook/buck/zip:zip',
],
)