[Webkit-unassigned] [Bug 96346] New: [CMake] Remove duplicated file in CMakeLists.txt

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Sep 10 18:15:33 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=96346

           Summary: [CMake] Remove duplicated file in CMakeLists.txt
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gyuyoung.kim at samsung.com


Below files are already added to main file list in WebCore/CMakeLists.txt. So, this should be removed.


IF (ENABLE_REQUEST_ANIMATION_FRAME)
    LIST(APPEND WebCore_IDL_FILES
        dom/RequestAnimationFrameCallback.idl
    )
    LIST(APPEND WebCore_SOURCES
        dom/ScriptedAnimationController.cpp
    )
ENDIF ()

IF (ENABLE_VIBRATION)
    LIST(APPEND WebCore_INCLUDE_DIRECTORIES
        ${WEBCORE_DIR}/Modules/vibration
    )
    LIST(APPEND WebCore_IDL_FILES
        Modules/vibration/NavigatorVibration.idl
    )
    LIST(APPEND WebCore_SOURCES
        Modules/vibration/NavigatorVibration.cpp
        Modules/vibration/Vibration.cpp
    )
ENDIF ()

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list