Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 import("../vulcanize.gni") | |
| 2 | |
| 3 vulcanized_unbuilt = "vulcanized.unbuilt.html" | |
| 4 | |
| 5 vulcanize("vulcanize") { | |
| 6 host = "bookmarks" | |
| 7 html_in_file = "bookmarks.html" | |
| 8 html_out_file = vulcanized_unbuilt | |
| 9 | |
| 10 input = rebase_path(".", root_build_dir) | |
| 11 js_out_file = "crisper.js" | |
| 12 | |
| 13 deps = [] | |
| 14 } | |
| 15 | |
| 16 polymer_css_build("build") { | |
| 17 input_files = [ vulcanized_unbuilt ] | |
| 18 output_files = [ "vulcanized.html" ] | |
| 19 deps = [ | |
| 20 ":vulcanize", | |
|
calamity
2017/05/29 07:26:51
optional nit: remove comma.
tsergeant
2017/05/30 00:35:51
This comma is placed there by `git cl format`, for
| |
| 21 ] | |
| 22 } | |
| OLD | NEW |