Update V8 to version 4.7.24.
[chromium-blink-merge.git] / docs / common_build_tasks.md
blobc456dbd3150825d97c5b22c65b6de3273d6eca9e
1 # Common Build Tasks
3 The Chromium build system is a complicated beast of a system, and it is not very
4 well documented beyond the basics of getting the source and building the
5 Chromium product. This page has more advanced information about the build
6 system.
8 If you're new to Chromium development, read the
9 [getting started guides](http://dev.chromium.org/developers/how-tos/get-the-code).
11 [TOC]
13 ## Faster Builds
15 ### Components Build
17 A non-standard build configuration is to use dynamic linking instead of static
18 linking for the various modules in the Chromium codebase. This results in
19 significantly faster link times, but is a divergence from what is shipped and
20 primarily tested. To enable the
21 [component build](http://www.chromium.org/developers/how-tos/component-build):
23     $ GYP_DEFINES="component=shared_library" gclient runhooks
27 ```
28 C:\...\src>set GYP_DEFINES=component=shared_library
29 C:\...\src>gclient runhooks
30 ```
32 ### Windows: Debug Builds Link Faster
34 On Windows if using the components build, building in debug mode will generally
35 link faster. This is because in debug mode, the linker works incrementally. In
36 release mode, a full link is performed each time.
38 ### Mac: Disable Release Mode Stripping
40 On Mac, if building in release mode, one of the final build steps will be to
41 strip the build products and create dSYM files. This process can slow down your
42 incremental builds, but it can be disabled with the following define:
44     $ GYP_DEFINES="mac_strip_release=0" gclient runhooks
46 ### Mac: DCHECKs in Release Mode
48 DCHECKs are only designed to be run in debug builds. But building in release
49 mode on Mac is significantly faster. You can have your cake and eat it too by
50 building release mode with DCHECKs enabled using the following define:
52     $ GYP_DEFINES="dcheck_always_on=1" gclient runhooks
54 ### Linux
56 Linux has its own page on [making the build faster](linux_faster_builds.md).
58 ## Configuring the Build
60 ### Environment Variables
62 There are various environment variables that can be passed to the metabuild
63 system GYP when generating project files. This is a summary of them:
65 TODO(andybons): Convert to list.
67 | GYP\_DEFINES | A set of key=value pairs separated by space that will set default values of variables used in .gyp and .gypi files |
68 |:-------------|:-------------------------------------------------------------------------------------------------------------------|
69 | GYP\_GENERATORS | The specific generator that creates build-system specific files                                                    |
70 | GYP\_GENERATOR\_FLAGS | Flags that are passed down to the tool that generates the build-system specific files                              |
71 | GYP\_GENERATOR\_OUTPUT | The directory that the top-level build output directory is relative to                                             |
73 Note also that GYP uses CPPFLAGS, CFLAGS, and CXXFLAGS when generating ninja
74 files (the values at build time = ninja run time are _not_ used); see
75 [gyp/generator/ninja.py](https://code.google.com/p/chromium/codesearch#chromium/src/tools/gyp/pylib/gyp/generator/ninja.py&q=cxxflags).
77 ### Variable Files
79 If you want to keep a set of variables established, there are a couple of magic
80 files that GYP reads:
82 #### chromium.gyp\_env
84 Next to your top-level `/src/` directory, create a file called
85 `chromium.gyp_env`. This holds a JSON dictionary, with the keys being any of the
86 above environment variables. For the full list of supported keys, see
87 [/src/build/gyp_helper.py](/build/gyp_helper.py).
89 ``` {
90   'variables': {
91     'mac_strip_release': 0,
92   }, 'GYP_DEFINES':
93     'clang=1 ' 'component=shared_library ' 'dcheck_always_on=1 '
94 } ```
96 #### include.gyp
98 Or globally in your home directory, create a file `~/.gyp/include.gypi`.
100 #### supplement.gypi
102 The build system will also include any files named `/src/*/supplement.gypi`,
103 which should be in the same format as include.gyp above.
105 ### Change the Build System
107 Most platforms support multiple build systems (Windows: different Visual Studios
108 versions and ninja, Mac: Xcode and ninja, etc.). A sensible default is selected,
109 but it can be overridden:
111     $ GYP_GENERATORS=ninja gclient runhooks
113 [Ninja](ninja_build.md) is generally the fastest way to build anything on any
114 platform.
116 ### Change Build Output Directory
118 If you need to change a compile-time flag and do not want to touch your current
119 build output, you can re-run GYP and place output into a new directory, like so,
120 assuming you are using ninja:
122 ```shell
123 $ GYP_GENERATOR_FLAGS="output_dir=out_other_ninja" gclient runhooks
124 $ ninja -C out_other_ninja/Release chrome
127 Alternatively, you can do the following, which should work with all GYP
128 generators, but the out directory is nested as `out_other/out/`.
130 ```shell
131 $ GYP_GENERATOR_OUTPUT="out_other" gclient runhooks
132 $ ninja -C out_other/out/Release chrome
135 **Note:** If you wish to run the WebKit layout tests, make sure you specify the
136 new directory using `--build-directory=out_other_ninja` (don't include the
137 `Release` part).
139 ### Building Google Chrome
141 To build Chrome, you need to be a Google employee and have access to the
142 [src-internal](https://goto.google.com/src-internal) repository. Once your
143 checkout is set up, you can run gclient like so:
145     $ GYP_DEFINES="branding=Chrome buildtype=Official" gclient runhooks
147 Then building the `chrome` target will produce the official build. This tip can
148 be used in conjunction with changing the output directory, since changing these
149 defines will rebuild the world.
151 Also note that some GYP\_DEFINES flags are incompatible with the official build.
152 If you get an error when you try to build, try removing all your flags and start
153 with just the above ones.