pidgin/pidgin

2bd48c93678a
Create a new standalone info pane widget

This currently doesn't support the following options:

* protocol icons
* emblems like mobile, etc
* buddy status's
* editing topics

There is also an issue where the avatar will cause it to grow larger than an
infopane without an avatar.

Testing Done:
Ran locally, verified it works are currently intended with chats, buddies, and non-buddies.

Reviewed at https://reviews.imfreedom.org/r/614/
FACEBOOK_SOURCES = [
'api.c',
'api.h',
'data.c',
'data.h',
'facebook.h',
'facebook.c',
'http.c',
'http.h',
'id.h',
'json.c',
'json.h',
'mqtt.c',
'mqtt.h',
'thrift.c',
'thrift.h',
'util.c',
'util.h'
]
if DYNAMIC_FACEBOOK
facebook_prpl = shared_library('facebook', FACEBOOK_SOURCES,
dependencies : [json, libpurple_dep, libsoup, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
# Used to produce docs.
facebook_inc = include_directories('.')
facebook_dep = declare_dependency(
link_with : facebook_prpl,
dependencies : [json, libpurple_dep, glib])
endif