Changeset 151325 in webkit


Ignore:
Timestamp:
Jun 7, 2013 10:15:29 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[regression] build failure WebKitFontFamilyNames.h missing
https://bugs.webkit.org/show_bug.cgi?id=117178

Reviewed by Sam Weinig.

.:

  • GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.

Source/WebCore:

  • GNUmakefile.am: Make libPlatform and other sources depend on the generated platform sources. This should prevent

build failures in source code that's depending on the generated platform sources.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r151247 r151325  
     12013-06-07  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [regression] build failure WebKitFontFamilyNames.h missing
     4        https://bugs.webkit.org/show_bug.cgi?id=117178
     5
     6        Reviewed by Sam Weinig.
     7
     8        * GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.
     9
    1102013-06-05  Bear Travis  <betravis@adobe.com>
    211
  • trunk/GNUmakefile.am

    r150884 r151325  
    216216        $(javascriptcore_built_sources) \
    217217        $(javascriptcore_built_nosources) \
     218        $(platform_built_sources) \
    218219        $(webcore_built_sources) \
    219220        $(webcore_built_nosources) \
  • trunk/Source/WebCore/ChangeLog

    r151323 r151325  
     12013-06-07  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [regression] build failure WebKitFontFamilyNames.h missing
     4        https://bugs.webkit.org/show_bug.cgi?id=117178
     5
     6        Reviewed by Sam Weinig.
     7
     8        * GNUmakefile.am: Make libPlatform and other sources depend on the generated platform sources. This should prevent
     9        build failures in source code that's depending on the generated platform sources.
     10
    1112013-06-07  Chris Fleizach  <cfleizach@apple.com>
    212
  • trunk/Source/WebCore/GNUmakefile.am

    r151169 r151325  
    434434# which means that GNUmake will only try to build the dependencies first, but
    435435# not rebuild all the targets if the dependencies change.
    436 $(webkitgtk_sources) $(webkit2_sources) $(webkit2_plugin_process_sources) $(webcore_sources) $(webcoregtk_sources) $(platformgtk_sources) : | $(supplemental_dependency_file) $(window_constructors_file) $(workercontext_constructors_file) $(webcore_built_sources)
     436$(webkitgtk_sources) $(webkit2_sources) $(webkit2_plugin_process_sources) $(webcore_sources) $(webcoregtk_sources) $(platform_sources) $(platformgtk_sources) : | $(supplemental_dependency_file) $(window_constructors_file) $(workercontext_constructors_file) $(webcore_built_sources) $(platform_built_sources)
    437437
    438438noinst_LTLIBRARIES += \
Note: See TracChangeset for help on using the changeset viewer.