Brian Silverman | c058dbf | 2015-09-26 17:39:15 -0400 | [diff] [blame] | 1 | licenses(['notice']) |
| 2 | |
| 3 | cc_library( |
| 4 | name = 'eigen', |
| 5 | visibility = ['//visibility:public'], |
| 6 | srcs = glob(['Eigen/src/**/*.h']), |
| 7 | includes = ['.'], |
Brian Silverman | b200c17 | 2017-01-02 17:35:35 -0800 | [diff] [blame^] | 8 | hdrs = glob(['Eigen/*'], exclude=[ |
Brian Silverman | c058dbf | 2015-09-26 17:39:15 -0400 | [diff] [blame] | 9 | # Stuff that we don't have the dependencies for. |
| 10 | 'Eigen/CholmodSupport', |
| 11 | 'Eigen/MetisSupport', |
| 12 | 'Eigen/PaStiXSupport', |
| 13 | 'Eigen/PardisoSupport', |
| 14 | 'Eigen/SPQRSupport', |
| 15 | 'Eigen/SuperLUSupport', |
| 16 | 'Eigen/UmfPackSupport', |
| 17 | ]), |
| 18 | ) |