Changeset 202739 in webkit


Ignore:
Timestamp:
Jul 1, 2016 9:43:02 AM (8 years ago)
Author:
Konstantin Tokarev
Message:

[cmake] Build TestNetscapePlugin only if NPAPI is enabled.
https://bugs.webkit.org/show_bug.cgi?id=159344

Reviewed by Alex Christensen.

  • DumpRenderTree/CMakeLists.txt:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r202728 r202739  
     12016-07-01  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [cmake] Build TestNetscapePlugin only if NPAPI is enabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=159344
     5
     6        Reviewed by Alex Christensen.
     7
     8        * DumpRenderTree/CMakeLists.txt:
     9
    1102016-07-01  Youenn Fablet  <youennf@gmail.com>
    211
  • trunk/Tools/DumpRenderTree/CMakeLists.txt

    r199338 r202739  
    111111target_link_libraries(DumpRenderTree ${DumpRenderTree_LIBRARIES})
    112112
    113 add_library(TestNetscapePlugin SHARED ${TestNetscapePlugin_SOURCES})
    114 target_link_libraries(TestNetscapePlugin ${TestNetscapePlugin_LIBRARIES})
     113if (ENABLE_NETSCAPE_PLUGIN_API)
     114    add_library(TestNetscapePlugin SHARED ${TestNetscapePlugin_SOURCES})
     115    target_link_libraries(TestNetscapePlugin ${TestNetscapePlugin_LIBRARIES})
     116endif ()
    115117
    116118if (WIN32)
Note: See TracChangeset for help on using the changeset viewer.