 7d0b10272c
			
		
	
	7d0b10272c
	
	
	
		
			
			This removes the dependency on Open Sans to be loaded as a web font. Also reduce base font size to 13px with a line height of 1.4 Change-Id: I18e502457554dce46098e339c1482dd65cbf1120
		
			
				
	
	
		
			33 lines
		
	
	
		
			657 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			657 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| include_defs('//lib/js.defs')
 | |
| 
 | |
| bower_components(
 | |
|   name = 'polygerrit_components',
 | |
|   deps = [
 | |
|     '//lib/js:fetch',
 | |
|     '//lib/js:highlightjs',
 | |
|     '//lib/js:iron-autogrow-textarea',
 | |
|     '//lib/js:iron-dropdown',
 | |
|     '//lib/js:iron-input',
 | |
|     '//lib/js:iron-overlay-behavior',
 | |
|     '//lib/js:iron-selector',
 | |
|     '//lib/js:moment',
 | |
|     '//lib/js:page',
 | |
|     '//lib/js:polymer',
 | |
|     '//lib/js:promise-polyfill',
 | |
|   ],
 | |
| )
 | |
| 
 | |
| genrule(
 | |
|   name = 'fonts',
 | |
|   cmd = ' && '.join([
 | |
|     'cd $TMP',
 | |
|     'for file in $SRCS; do unzip -q $file; done',
 | |
|     'zip -q $OUT *',
 | |
|   ]),
 | |
|   srcs = [
 | |
|     '//lib/fonts:sourcecodepro',
 | |
|   ],
 | |
|   out = 'fonts.zip',
 | |
|   visibility = ['PUBLIC'],
 | |
| )
 |