Changeset 59537 in webkit


Ignore:
Timestamp:
May 15, 2010 6:37:59 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-05-15 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Adam Treat.

[EFL] Add build system for the EFL port.
http://webkit.org/b/37945

  • CMakeLists.txt: Added.
  • cmake/FindCFLite.cmake: Added.
  • cmake/FindCairo.cmake: Added.
  • cmake/FindEFL.cmake: Added.
  • cmake/FindFreetype.cmake: Added.
  • cmake/FindGDK-PixBuf.cmake: Added.
  • cmake/FindGDK.cmake: Added.
  • cmake/FindGIO.cmake: Added.
  • cmake/FindGlib.cmake: Added.
  • cmake/FindICU.cmake: Added.
  • cmake/FindLibSoup2.cmake: Added.
  • cmake/FindLibXlst.cmake: Added.
  • cmake/FindPango.cmake: Added.
  • cmake/FindSqlite.cmake: Added.
  • cmake/LibFindMacros.cmake: Added.
  • cmake/OptionsCommon.cmake: Added.
  • cmake/OptionsEfl.cmake: Added.
  • cmake/WebKitEfl.cmake: Added.
  • cmake/WebKitFS.cmake: Added.
  • cmake/WebKitFeatures.cmake: Added.
  • cmake/WebKitGenerators.cmake: Added.
  • cmake/WebKitHelpers.cmake: Added.
  • cmake/WebKitMacros.cmake: Added.
  • cmakeconfig.h.cmake: Added.

2010-05-15 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Adam Treat.

[EFL] Add build system for the EFL port.
http://webkit.org/b/37945

  • CMakeLists.txt: Added.
  • CMakeListsEfl.txt: Added.
  • config.h: Add conditional to look for cmakeconfig.h.
  • jsc/CMakeLists.txt: Added.
  • jsc/CMakeListsEfl.txt: Added.
  • wtf/CMakeLists.txt: Added.
  • wtf/CMakeListsEfl.txt: Added.

2010-05-15 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Adam Treat.

[EFL] Add build system for the EFL port.
http://webkit.org/b/37945

  • CMakeLists.txt: Added.
  • CMakeListsEfl.txt: Added.
  • config.h: Add conditional to look for cmakeconfig.h.

2010-05-15 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Adam Treat.

[EFL] Add build system for the EFL port.
http://webkit.org/b/37945

  • CMakeLists.txt: Added.
  • CMakeListsEfl.txt: Added.
Location:
trunk
Files:
36 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r59474 r59537  
     12010-05-15  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Adam Treat.
     4
     5        [EFL] Add build system for the EFL port.
     6        http://webkit.org/b/37945
     7
     8        * CMakeLists.txt: Added.
     9        * cmake/FindCFLite.cmake: Added.
     10        * cmake/FindCairo.cmake: Added.
     11        * cmake/FindEFL.cmake: Added.
     12        * cmake/FindFreetype.cmake: Added.
     13        * cmake/FindGDK-PixBuf.cmake: Added.
     14        * cmake/FindGDK.cmake: Added.
     15        * cmake/FindGIO.cmake: Added.
     16        * cmake/FindGlib.cmake: Added.
     17        * cmake/FindICU.cmake: Added.
     18        * cmake/FindLibSoup2.cmake: Added.
     19        * cmake/FindLibXlst.cmake: Added.
     20        * cmake/FindPango.cmake: Added.
     21        * cmake/FindSqlite.cmake: Added.
     22        * cmake/LibFindMacros.cmake: Added.
     23        * cmake/OptionsCommon.cmake: Added.
     24        * cmake/OptionsEfl.cmake: Added.
     25        * cmake/WebKitEfl.cmake: Added.
     26        * cmake/WebKitFS.cmake: Added.
     27        * cmake/WebKitFeatures.cmake: Added.
     28        * cmake/WebKitGenerators.cmake: Added.
     29        * cmake/WebKitHelpers.cmake: Added.
     30        * cmake/WebKitMacros.cmake: Added.
     31        * cmakeconfig.h.cmake: Added.
     32
    1332010-05-14  Simon Hausmann  <simon.hausmann@nokia.com>
    234
  • trunk/JavaScriptCore/ChangeLog

    r59527 r59537  
     12010-05-15  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Adam Treat.
     4
     5        [EFL] Add build system for the EFL port.
     6        http://webkit.org/b/37945
     7
     8        * CMakeLists.txt: Added.
     9        * CMakeListsEfl.txt: Added.
     10        * config.h: Add conditional to look for cmakeconfig.h.
     11        * jsc/CMakeLists.txt: Added.
     12        * jsc/CMakeListsEfl.txt: Added.
     13        * wtf/CMakeLists.txt: Added.
     14        * wtf/CMakeListsEfl.txt: Added.
     15
    1162010-05-15  Chao-ying Fu  <fu@mips.com>
    217
  • trunk/JavaScriptCore/config.h

    r58307 r59537  
    2121
    2222#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
     23#ifdef BUILDING_WITH_CMAKE
     24#include "cmakeconfig.h"
     25#else
    2326#include "autotoolsconfig.h"
     27#endif
    2428#endif
    2529
  • trunk/WebCore/ChangeLog

    r59536 r59537  
     12010-05-15  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Adam Treat.
     4
     5        [EFL] Add build system for the EFL port.
     6        http://webkit.org/b/37945
     7
     8        * CMakeLists.txt: Added.
     9        * CMakeListsEfl.txt: Added.
     10        * config.h: Add conditional to look for cmakeconfig.h.
     11
    1122010-05-15  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebCore/config.h

    r58188 r59537  
    2121
    2222#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
     23#ifdef BUILDING_WITH_CMAKE
     24#include "cmakeconfig.h"
     25#else
    2326#include "autotoolsconfig.h"
     27#endif
    2428#endif
    2529
  • trunk/WebKit/ChangeLog

    r59453 r59537  
     12010-05-15  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Adam Treat.
     4
     5        [EFL] Add build system for the EFL port.
     6        http://webkit.org/b/37945
     7
     8        * CMakeLists.txt: Added.
     9        * CMakeListsEfl.txt: Added.
     10
    1112010-05-14  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
    212
Note: See TracChangeset for help on using the changeset viewer.