java_library() targets must now list every dependency they need for an import. This permits buck to run more targets in parallel as it has a better view of the dependency graph, and opens the door for buck to make even more optimizations in the future. Change-Id: I132bf47a725e44ba5950ba6ca76bfa72c3876906
		
			
				
	
	
		
			24 lines
		
	
	
		
			592 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			592 B
		
	
	
	
		
			Python
		
	
	
	
	
	
java_library2(
 | 
						|
  name = 'openid',
 | 
						|
  srcs = glob(['src/main/java/**/*.java']),
 | 
						|
  resources = glob(['src/main/resources/**/*']),
 | 
						|
  deps = [
 | 
						|
    '//gerrit-common:server',
 | 
						|
    '//gerrit-extension-api:api',
 | 
						|
    '//gerrit-gwtexpui:server',
 | 
						|
    '//gerrit-httpd:httpd',
 | 
						|
    '//gerrit-reviewdb:server',
 | 
						|
    '//gerrit-server:server',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib:gwtorm',
 | 
						|
    '//lib:jsr305',
 | 
						|
    '//lib/guice:guice',
 | 
						|
    '//lib/guice:guice-servlet',
 | 
						|
    '//lib/jgit:jgit',
 | 
						|
    '//lib/log:api',
 | 
						|
    '//lib/openid:consumer',
 | 
						|
  ],
 | 
						|
  compile_deps = ['//lib:servlet-api-3_0'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 |