|  | SRC = 'src/main/java/com/google/gerrit/prettify/' | 
|  |  | 
|  | gwt_module( | 
|  | name = 'client', | 
|  | srcs = glob([ | 
|  | SRC + 'client/**/*.java', | 
|  | SRC + 'common/**/*.java', | 
|  | ]), | 
|  | gwt_xml = SRC + 'PrettyFormatter.gwt.xml', | 
|  | resources = glob([ | 
|  | 'src/main/java/com/google/gerrit/prettify/client/*.properties', | 
|  | ]), | 
|  | deps = [ | 
|  | ':google-code-prettify', | 
|  | '//gerrit-patch-jgit:client', | 
|  | '//gerrit-reviewdb:client', | 
|  | '//gerrit-gwtexpui:SafeHtml', | 
|  | '//lib:guava', | 
|  | '//lib:gwtjsonrpc', | 
|  | '//lib/gwt:user', | 
|  | '//lib/jgit:jgit', | 
|  | ], | 
|  | visibility = ['PUBLIC'], | 
|  | ) | 
|  |  | 
|  | java_library( | 
|  | name = 'google-code-prettify', | 
|  | resources = glob([ | 
|  | 'src/main/resources/com/google/gerrit/prettify/client/**/*', | 
|  | ]), | 
|  | deps = [ | 
|  | '//lib:LICENSE-Apache2.0', | 
|  | ], | 
|  | ) | 
|  |  | 
|  | java_library( | 
|  | name = 'server', | 
|  | srcs = glob([SRC + 'common/**/*.java']), | 
|  | deps = [ | 
|  | '//gerrit-patch-jgit:server', | 
|  | '//gerrit-reviewdb:server', | 
|  | '//lib:guava', | 
|  | '//lib:gwtjsonrpc', | 
|  | '//lib/jgit:jgit', | 
|  | ], | 
|  | visibility = ['PUBLIC'], | 
|  | ) | 
|  |  | 
|  | export_file( | 
|  | name = 'prettify.min.js', | 
|  | src = 'src/main/resources/com/google/gerrit/prettify/client/prettify.js', | 
|  | visibility = ['//Documentation:'], | 
|  | ) | 
|  |  | 
|  | export_file( | 
|  | name = 'prettify.min.css', | 
|  | src = 'src/main/resources/com/google/gerrit/prettify/client/prettify.css', | 
|  | visibility = ['//Documentation:'], | 
|  | ) |