The I2C pins are GPIO0 is SDA and GPIO2 is SCL.
So far i've just tried this library - https://github.com/sparkfun/BMP180_Breakout with the ESP8266 Arduino IDE, I had to modify that library, changing SFE_BMP180.cpp so instead of Wire.begin() it had Wire.begin(0,2). That is with the latest ESP8266 Arduino IDE code, with the original ESP8266 Arduino IDE 1.6.1 release code you'd have to add Wire.pins(0,2) before the Wire.begin(). But with that original IDE release a lot of these presure sensor libraries fail due to the math bug - https://github.com/esp8266/Arduino/issues/170 - so you'll probably have better luck with that latest code as described here: https://github.com/esp8266/Arduino#user ... ds-manager