Changeset 128108 in webkit


Ignore:
Timestamp:
Sep 10, 2012 2:43:41 PM (12 years ago)
Author:
ryuan.choi@samsung.com
Message:

[WTR] Generated source files should include config.h
https://bugs.webkit.org/show_bug.cgi?id=96254

Reviewed by Benjamin Poulain.

Current coding style has encouraged to include config.h at the first position,
But derived sources, generated by CodeGeneratorTestRunner.pm, don't follow
this rule.
Therefore, this patch added it.

  • WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:

(_generateImplementationFile):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r128093 r128108  
     12012-09-10  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [WTR] Generated source files should include config.h
     4        https://bugs.webkit.org/show_bug.cgi?id=96254
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Current coding style has encouraged to include config.h at the first position,
     9        But derived sources, generated by CodeGeneratorTestRunner.pm, don't follow
     10        this rule.
     11        Therefore, this patch added it.
     12
     13        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
     14        (_generateImplementationFile):
     15
    1162012-09-10  Rick Byers  <rbyers@chromium.org>
    217
  • trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm

    r76259 r128108  
    329329
    330330    unshift(@contents, map { "#include \"$_\"\n" } sort keys(%contentsIncludes));
     331    unshift(@contents, "#include \"config.h\"\n");
    331332    unshift(@contents, @contentsPrefix);
    332333
Note: See TracChangeset for help on using the changeset viewer.