Changeset 101523 in webkit


Ignore:
Timestamp:
Nov 30, 2011 9:16:45 AM (12 years ago)
Author:
Martin Robinson
Message:

[GTK] Add an initial jhbuild setup which installs fonts into the WebKitBuild
https://bugs.webkit.org/show_bug.cgi?id=73425

Reviewed by Gustavo Noronha Silva.

Add initial jhbuild support to the GTK+ port. update-webkitgtk-libs will
ensure that the jhbuild root is up-to-date. Currently the only module is
the font module.

  • Scripts/update-webkitgtk-libs: Added.
  • gtk/common.py: Added a helper to get the number of CPUs.
  • gtk/jhbuild.modules: Added.
  • gtk/jhbuildrc: Added.
Location:
trunk/Tools
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r101493 r101523  
     12011-11-30  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] Add an initial jhbuild setup which installs fonts into the WebKitBuild
     4        https://bugs.webkit.org/show_bug.cgi?id=73425
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        Add initial jhbuild support to the GTK+ port. update-webkitgtk-libs will
     9        ensure that the jhbuild root is up-to-date. Currently the only module is
     10        the font module.
     11
     12        * Scripts/update-webkitgtk-libs: Added.
     13        * gtk/common.py: Added a helper to get the number of CPUs.
     14        * gtk/jhbuild.modules: Added.
     15        * gtk/jhbuildrc: Added.
     16
    1172011-11-30  Simon Hausmann  <simon.hausmann@nokia.com>
    218
  • trunk/Tools/gtk/common.py

    r101404 r101523  
    7070def build_path(*args):
    7171    return os.path.join(*(get_build_path(),) + args)
     72
     73
     74def number_of_cpus():
     75    process = subprocess.Popen([script_path('num-cpus')], stdout=subprocess.PIPE)
     76    stdout = process.communicate()[0]
     77    return int(stdout)
Note: See TracChangeset for help on using the changeset viewer.