Changeset 145714 in webkit


Ignore:
Timestamp:
Mar 13, 2013 7:13:13 AM (11 years ago)
Author:
mnaganov@chromium.org
Message:

[Chromium] Rename android_build_type to android_webview_build in .gyp files.
https://bugs.webkit.org/show_bug.cgi?id=112129

Reviewed by Adam Barth.

Following Chromium
http://src.chromium.org/viewvc/chrome?view=rev&revision=187556
this is being renamed to better explain what it does.

Source/WebKit/chromium:

  • WebKitUnitTests.gyp:

Tools:

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r145712 r145714  
     12013-03-13  Mikhail Naganov  <mnaganov@chromium.org>
     2
     3        [Chromium] Rename android_build_type to android_webview_build in .gyp files.
     4        https://bugs.webkit.org/show_bug.cgi?id=112129
     5
     6        Reviewed by Adam Barth.
     7
     8        Following Chromium
     9        http://src.chromium.org/viewvc/chrome?view=rev&revision=187556
     10        this is being renamed to better explain what it does.
     11
     12        * WebKitUnitTests.gyp:
     13
    1142013-03-13  Pavel Feldman  <pfeldman@chromium.org>
    215
  • trunk/Source/WebKit/chromium/WebKitUnitTests.gyp

    r145355 r145714  
    145145            },
    146146        }],
    147         ['OS=="android" and android_build_type==0 and gtest_target_type == "shared_library"', {
     147        ['OS=="android" and android_webview_build==0 and gtest_target_type == "shared_library"', {
    148148            # Wrap libwebkit_unit_tests.so into an android apk for execution.
    149149            'targets': [{
  • trunk/Tools/ChangeLog

    r145709 r145714  
     12013-03-13  Mikhail Naganov  <mnaganov@chromium.org>
     2
     3        [Chromium] Rename android_build_type to android_webview_build in .gyp files.
     4        https://bugs.webkit.org/show_bug.cgi?id=112129
     5
     6        Reviewed by Adam Barth.
     7
     8        Following Chromium
     9        http://src.chromium.org/viewvc/chrome?view=rev&revision=187556
     10        this is being renamed to better explain what it does.
     11
     12        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
     13
    1142013-03-13  Simon Hausmann  <simon.hausmann@digia.com>
    215
  • trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp

    r145355 r145714  
    7070            ],
    7171            'conditions': [
    72                 ['OS=="android" and android_build_type==0', {
     72                ['OS=="android" and android_webview_build==0', {
    7373                    # The Chromium Android port will compare images on host rather
    7474                    # than target (a device or emulator) for performance reasons.
    7575                    'toolsets': ['host'],
    7676                }],
    77                 ['OS=="android" and android_build_type!=0', {
     77                ['OS=="android" and android_webview_build==1', {
    7878                    'type': 'none',
    7979                }],
     
    220220                    }],
    221221                }],
    222                 ['OS=="android" and android_build_type==0', {
     222                ['OS=="android" and android_webview_build==0', {
    223223                    'dependencies': [
    224224                        'ImageDiff#host',
Note: See TracChangeset for help on using the changeset viewer.