diff options
author | tommycli <tommycli@chromium.org> | 2016-03-25 15:07:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 22:09:38 +0000 |
commit | 521de10fba02c37a5221a70a29a9e53fe478733c (patch) | |
tree | 14a387ef3656a8fb19874eece27aa7deffc3f0f0 /docs | |
parent | 12c8005e13fb59b925f5c9fddec7b4edbcf35a5a (diff) | |
download | chromium_src-521de10fba02c37a5221a70a29a9e53fe478733c.zip chromium_src-521de10fba02c37a5221a70a29a9e53fe478733c.tar.gz chromium_src-521de10fba02c37a5221a70a29a9e53fe478733c.tar.bz2 |
Closure Compiler: Add script to run compile and update Wiki docs.
This patch adds a script to run the Closure Compile for Chrome resources. It also updates the wiki to reflect this.
BUG=596944
Review URL: https://codereview.chromium.org/1829553002
Cr-Commit-Position: refs/heads/master@{#383378}
Diffstat (limited to 'docs')
-rw-r--r-- | docs/closure_compilation.md | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/docs/closure_compilation.md b/docs/closure_compilation.md index 540abf6..bc1cabd 100644 --- a/docs/closure_compilation.md +++ b/docs/closure_compilation.md @@ -15,17 +15,10 @@ On Mac or Windows, visit: ### Using ninja to compile the code -We use GYP and ninja as our build system. To generate the ninja files from GYP: +To compile the JavaScript, run this script: ```shell -# notice the 2 in compiled_resources2.gyp -GYP_GENERATORS=ninja tools/gyp/gyp --depth . third_party/closure_compiler/compiled_resources2.gyp -``` - -To compile the JavaScript: - -```shell -ninja -C out/Default -j4 +third_party/closure_compiler/run_compiler ``` The output should look something like this: @@ -35,16 +28,10 @@ ninja: Entering directory `out/Default/' [30/106] ACTION Compiling chrome/browser/resources/md_history/constants.js ``` -To generate and run the **deprecated** v1 gyp format, remove the "2" from "compiled_resources2.gyp": - -```shell -$ GYP_GENERATORS=ninja tools/gyp/gyp --depth . third_party/closure_compiler/compiled_resources.gyp -``` - -Compiling works the same way for both v1 and v2 systems: +To compile only a specific target, add an argument after the script name: ```shell -ninja -C out/Default -j4 +third_party/closure_compiler/run_compiler people_page ``` ## Background |