wiki:AddingFiles

Version 7 (modified by brrian@me.com, 10 years ago) (diff)

How to add new WebCore directory containing headers used in Win WebKit

WebKit has several different build systems; which is used depends on the platform and port. When adding files used by more than one port, its tricky to remember all the different build system files that the file must be added. This page documents how to do so, and common gotchas.

How to add a file

Xcode (for Mac, iOS)

Xcode-based builds use Xcode projects named after the respective WebKit components. For example, the Xcode project directory for WebCore is at Source/WebCore/WebCore.xcproj/ and the actual project file in called project.pbxproj. To add a file, you'll need to open the appropriate project in Xcode.

Adding a directory

Usually, file system directories are mapped one-to-one to Xcode project groups (which have folder icons). To add a directory, right-click in the navigation sidebar and "Add Group". Name and alphabetize the group, and then open the item details sidebar by selecting the group. If the group corresponds to a filesystem directory, ensure that location is set to "Relative to Group", and just below, select the directory. (By doing this, Xcode knows to look in the filesystem directory when adding new files to the group.)

Adding a file

Find the group that corresponds to the file's directory, then right-click and select "Add Files to ProjectName..." and select the files in the file chooser dialog. Ensure that the file is added to correct target. The correct target is almost always the framework named after the project, not the "All" target. Lastly, alphabetize the file within its group in the navigation sidebar.

If adding a header file that should be accessible from other frameworks (say, using a WebCore framework from WebKit2), then you must alter the file's target membership from "Project" to "Private" in the "Target Membership" details sidebar, using the drop-down next to the framework. If using headers from JavaScriptCore inside WebCore, you must also add a forwarding header in Source/WebCore/ForwardingHeaders in the appropriate mirrored directory structure.

Adding code generators / generated files

Aside from adding the build dependencies to DerivedSources.make (which is used by all ports), you may need to do the following:

  • If the code generator from one framework is used by another, you will need to add it to the Private Headers group. For non-header files, temporarily set the file type to C Header, change the header group to Private, and then change back to the correct file type.
  • If the rules added to DerivedSources.make rely on environment variables, you need to set those in make-generated-sources.sh.

Visual Studio (Windows)

Visual Studio-based builds use XML files named after the respective WebKit components. One file (e.g., Source/WebCore/WebCore.vcxproj.filters) describes the tree structure of the project that should be displayed in Visual Studio. The other file (e.g., Source/WebCore/WebCOre.vcxproj) contains the actual build rules and dependencies.

Adding a directory

  • Make a stub in Project.vcxproj.filters at the top.
  • If the directory has headers used outside the current project (i.e., a WebCore directory's headers are used by WebKit), then you must tell the build system to copy the directory's headers to the shared include dir. This is configured in Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd.

Adding a file

  • Add a CLInclude command for a header file and CLCompile command for an implementation file.
  • It's recommended that you consult a build expert for anything more complicated, such as adding a new code generator (especially if you can't run Visual Studio yourself).

Adding code generators / generated files

  • Make sure that the rules in copy-files.cmd will properly copy any generated files you want to use from other frameworks.
  • If you rely on environment variables inside DerivedSources.make, you will need to export them in build-generated-files.sh.

CMake (EFL, GTK)

Find the relevant CMakeLists.txt file in the project directory (WebCore, WebKit2, DumpRenderTree, etc). Then, add entries to various lists in the files depending on what is being added. Platform-specific rules and dependencies are located in files like PlatformGTK.cmake and PlatformEFL.cmake.

Adding a directory

  • If the directory contains header or implementation files, add it to Project_INCLUDE_DIRECTORIES.
  • If the directory contains IDL files, add it to Project_IDL_INCLUDES.
  • If the directory has headers used outside the current project (i.e., a WebCore directory's headers are used by WebKit2), then you must add the referenced directory to referencing project's CMakeLists.txt (i.e., WebKit2).

Adding a file

  • If it's an IDL file, add to the section Project_IDL_FILES.
  • If it's a new Inspector domain, add to Project_INSPECTOR_DOMAINS.
  • If it's a CPP file, add it to Project_SOURCES.
  • If the file depends on a feature flag, then wrap it in a conditional that appends extra values to the main lists if the feature is enabled. See existing CMakeLists.txt for examples of how to do this.

Adding code generators / generated files

You'll need to add a custom command, and append the generated files to Project_SOURCES or some other list. This adds the generated file as a build dependency, and the custom rule tells CMake how to derive the generated files. See existing files for examples.

Tips

TODO - feel free to add your hard-won lessons here.