Bug 63527 - Write a tools library to manipulate Visual Studio project files
Summary: Write a tools library to manipulate Visual Studio project files
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P3 Normal
Assignee: Roland Steiner
URL:
Keywords:
Depends on: 63528 64148
Blocks: 61772
  Show dependency treegraph
 
Reported: 2011-06-28 05:13 PDT by Roland Steiner
Modified: 2011-07-07 23:51 PDT (History)
4 users (show)

See Also:


Attachments
work-in-progress (12.48 KB, patch)
2011-07-07 23:40 PDT, Roland Steiner
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Roland Steiner 2011-06-28 05:13:39 PDT
The webkit-file tool project requires a module to manipulate Visual Studio project files.
Comment 1 Roland Steiner 2011-07-07 23:40:40 PDT
Created attachment 100080 [details]
work-in-progress

very early draft
Comment 2 Adam Barth 2011-07-07 23:50:47 PDT
Comment on attachment 100080 [details]
work-in-progress

View in context: https://bugs.webkit.org/attachment.cgi?id=100080&action=review

> Tools/Scripts/webkitpy/common/project/vcproj.py:40
> +class VCProjectException(ProjectException):
> +    def __init__(self, message):
> +        super(VCProjectException, self).__init__(message)

What's the motivation for having these complicated exception class hierarchies?
Comment 3 Adam Barth 2011-07-07 23:51:47 PDT
It's important for this code to have tests, but I presume you'll add them in later iterations of these patches.