Changeset 140802 in webkit


Ignore:
Timestamp:
Jan 25, 2013 2:08:20 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt][Gtk] build fix after r140752.
https://bugs.webkit.org/show_bug.cgi?id=107908

Patch by Huang Dongsung <luxtella@company100.net> on 2013-01-25
Reviewed by Kentaro Hara.

Build break after r140752.

Move Authentication and Downloads to Shared.

  • DerivedSources.pri:
  • GNUmakefile.am:
  • WebKit2.pri:
Location:
trunk/Source/WebKit2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r140769 r140802  
     12013-01-25  Huang Dongsung  <luxtella@company100.net>
     2
     3        [Qt][Gtk] build fix after r140752.
     4        https://bugs.webkit.org/show_bug.cgi?id=107908
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Build break after r140752.
     9
     10        Move Authentication and Downloads to Shared.
     11
     12        * DerivedSources.pri:
     13        * GNUmakefile.am:
     14        * WebKit2.pri:
     15
    1162013-01-24  Tim Horton  <timothy_horton@apple.com>
    217
  • trunk/Source/WebKit2/DerivedSources.pri

    r140720 r140802  
    4040    PluginProcess \
    4141    WebProcess/ApplicationCache \
    42     WebProcess/Authentication \
    4342    WebProcess/Battery \
    4443    WebProcess/Cookies \
     
    6261    UIProcess/Plugins \
    6362    Shared \
     63    Shared/Authentication \
    6464    Shared/Plugins
    6565
  • trunk/Source/WebKit2/GNUmakefile.am

    r140280 r140802  
    5151        -I$(srcdir)/Source/WebKit2/Shared/API/c/gtk \
    5252        -I$(srcdir)/Source/WebKit2/Shared/API/c/soup \
     53        -I$(srcdir)/Source/WebKit2/Shared/Authentication \
    5354        -I$(srcdir)/Source/WebKit2/Shared/CoreIPCSupport \
     55        -I$(srcdir)/Source/WebKit2/Shared/Downloads \
     56        -I$(srcdir)/Source/WebKit2/Shared/Downloads/soup \
    5457        -I$(srcdir)/Source/WebKit2/Shared/gtk \
    5558        -I$(srcdir)/Source/WebKit2/Shared/Network \
     
    7780        -I$(srcdir)/Source/WebKit2/WebProcess \
    7881        -I$(srcdir)/Source/WebKit2/WebProcess/ApplicationCache \
    79         -I$(srcdir)/Source/WebKit2/WebProcess/Authentication \
    8082        -I$(srcdir)/Source/WebKit2/WebProcess/Battery \
    8183        -I$(srcdir)/Source/WebKit2/WebProcess/Cookies \
    82         -I$(srcdir)/Source/WebKit2/WebProcess/Downloads \
    83         -I$(srcdir)/Source/WebKit2/WebProcess/Downloads/soup \
    8484        -I$(srcdir)/Source/WebKit2/WebProcess/FullScreen \
    8585        -I$(srcdir)/Source/WebKit2/WebProcess/Geolocation \
     
    306306        $(WebKit2)/PluginProcess \
    307307        $(WebKit2)/Shared \
     308        $(WebKit2)/Shared/Authentication \
    308309        $(WebKit2)/Shared/Plugins \
    309310        $(WebKit2)/UIProcess \
     
    317318        $(WebKit2)/WebProcess \
    318319        $(WebKit2)/WebProcess/ApplicationCache \
    319         $(WebKit2)/WebProcess/Authentication \
    320320        $(WebKit2)/WebProcess/Battery \
    321321        $(WebKit2)/WebProcess/Cookies \
     
    644644        $(shell ls $(WebKit2)/PluginProcess/*.in) \
    645645        $(shell ls $(WebKit2)/Shared/*.in) \
     646        $(shell ls $(WebKit2)/Shared/Authentication/*.in) \
    646647        $(shell ls $(WebKit2)/Shared/Plugins/*.in) \
    647648        $(shell ls $(WebKit2)/UIProcess/*.in) \
     
    652653        $(shell ls $(WebKit2)/WebProcess/*.in) \
    653654        $(shell ls $(WebKit2)/WebProcess/ApplicationCache/*.in) \
    654         $(shell ls $(WebKit2)/WebProcess/Authentication/*.in) \
    655655        $(shell ls $(WebKit2)/WebProcess/Battery/*.in) \
    656656        $(shell ls $(WebKit2)/WebProcess/Cookies/*.in) \
  • trunk/Source/WebKit2/WebKit2.pri

    r140720 r140802  
    1717    $$SOURCE_DIR/Shared \
    1818    $$SOURCE_DIR/Shared/API/c \
     19    $$SOURCE_DIR/Shared/Authentication \
    1920    $$SOURCE_DIR/Shared/CoordinatedGraphics \
    2021    $$SOURCE_DIR/Shared/CoreIPCSupport \
     22    $$SOURCE_DIR/Shared/Downloads \
     23    $$SOURCE_DIR/Shared/Downloads/qt \
    2124    $$SOURCE_DIR/Shared/Network \
    2225    $$SOURCE_DIR/Shared/Plugins \
     
    4043    $$SOURCE_DIR/WebProcess \
    4144    $$SOURCE_DIR/WebProcess/ApplicationCache \
    42     $$SOURCE_DIR/WebProcess/Authentication \
    4345    $$SOURCE_DIR/WebProcess/Battery \
    4446    $$SOURCE_DIR/WebProcess/Cookies \
    4547    $$SOURCE_DIR/WebProcess/Cookies/qt \
    46     $$SOURCE_DIR/WebProcess/Downloads \
    47     $$SOURCE_DIR/WebProcess/Downloads/qt \
    4848    $$SOURCE_DIR/WebProcess/FullScreen \
    4949    $$SOURCE_DIR/WebProcess/Geolocation \
Note: See TracChangeset for help on using the changeset viewer.