~ubuntu-branches/debian/experimental/gnome-sushi/experimental

« back to all changes in this revision

Viewing changes to src/js/viewers/font.js

  • Committer: Package Import Robot
  • Author(s): Josselin Mouette, Laurent Bigonville, Josselin Mouette
  • Date: 2014-04-26 23:53:03 UTC
  • mfrom: (0.1.14) (2.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20140426235303-cpc8f7vnttqvghxy
Tags: 3.12.0-1
[ Laurent Bigonville ]
* debian/rules: Pass --as-needed to dh_autoreconf and the needed flags to
  the linker to minimize the runtime dependencies

[ Josselin Mouette ]
* New upstream release.
* Artifically bump gjs build-dependency to ensure it is built against 
  the experimental version, making it co-installable with gnome-shell.
* Add missing build-dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 * General Public License for more details.
13
13
 *
14
14
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17
 
 * 02111-1307, USA.
 
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18
16
 *
19
17
 * The Sushi project hereby grant permission for non-gpl compatible GStreamer
20
18
 * plugins to be used and distributed together with GStreamer and Sushi. This
25
23
 *
26
24
 */
27
25
 
28
 
let MimeHandler = imports.ui.mimeHandler;
29
 
let GtkClutter = imports.gi.GtkClutter;
30
 
let Gtk = imports.gi.Gtk;
31
 
let GLib = imports.gi.GLib;
32
 
 
33
 
let Sushi = imports.gi.Sushi;
 
26
const MimeHandler = imports.ui.mimeHandler;
 
27
const Utils = imports.ui.utils;
 
28
 
 
29
const Lang = imports.lang;
 
30
 
 
31
const GtkClutter = imports.gi.GtkClutter;
 
32
const Gtk = imports.gi.Gtk;
 
33
const GLib = imports.gi.GLib;
 
34
const Sushi = imports.gi.Sushi;
34
35
 
35
36
function FontRenderer(args) {
36
37
    this._init(args);