Changeset 139963 in webkit


Ignore:
Timestamp:
Jan 16, 2013 9:16:27 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Fix build break for Android webview.
https://bugs.webkit.org/show_bug.cgi?id=107072

Patch by Kristian Monsen <kristianm@google.com> on 2013-01-16
Reviewed by Steve Block.

Add extra guards when checking for OS=="Android" to make sure it is not included
for webview.

  • WebKitUnitTests.gyp:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

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

    r139956 r139963  
     12013-01-16  Kristian Monsen  <kristianm@google.com>
     2
     3        Fix build break for Android webview.
     4        https://bugs.webkit.org/show_bug.cgi?id=107072
     5
     6        Reviewed by Steve Block.
     7
     8        Add extra guards when checking for OS=="Android" to make sure it is not included
     9        for webview.
     10
     11        * WebKitUnitTests.gyp:
     12
    1132013-01-16  Dominic Cooney  <dominicc@chromium.org>
    214
  • trunk/Source/WebKit/chromium/WebKitUnitTests.gyp

    r139895 r139963  
    139139            },
    140140        }],
    141         ['OS=="android" and gtest_target_type == "shared_library"', {
     141        ['OS=="android" and android_build_type==0 and gtest_target_type == "shared_library"', {
    142142            # Wrap libwebkit_unit_tests.so into an android apk for execution.
    143143            'targets': [{
Note: See TracChangeset for help on using the changeset viewer.