~ubuntu-branches/ubuntu/trusty/xiphos/trusty

« back to all changes in this revision

Viewing changes to src/webkit/wscript_build

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs, Dmitrijs Ledkovs
  • Date: 2012-03-11 18:43:32 UTC
  • mfrom: (17.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120311184332-splq3ecpx7tyi87d
Tags: 3.1.5+dfsg-1
[ Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> ]  
* New upstream release.
* Build using webkit backend
* Contains unpacked source for waf binary (Closes: #654511)
* Update debian/copyright to latest specification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# encoding: utf8
 
3
 
 
4
lib = bld.new_task_gen(
 
5
    features='cxx cc',
 
6
    includes='. ../.. ../../src %s' % bld.env['GNOME_INCLUDE'],
 
7
    target='webkit',
 
8
    uselib= bld.env['ALL_LIBS'],
 
9
)
 
10
 
 
11
lib.add_marshal_file('marshal.list', 'wk_marshal')
 
12
lib.find_sources_in_dirs('.')
 
13
 
 
14