diff options
author | brettw <brettw@chromium.org> | 2015-02-24 10:21:00 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-24 18:21:27 +0000 |
commit | 0c15ef17fbe8d1c23c07f04a8c284b24f95c6203 (patch) | |
tree | 82fb9b0eb0dca2d785de8ff36af0694431c942ab /chrome/chrome_exe.gypi | |
parent | 06e7847bb98212ff289907277ab211cb16883ce8 (diff) | |
download | chromium_src-0c15ef17fbe8d1c23c07f04a8c284b24f95c6203.zip chromium_src-0c15ef17fbe8d1c23c07f04a8c284b24f95c6203.tar.gz chromium_src-0c15ef17fbe8d1c23c07f04a8c284b24f95c6203.tar.bz2 |
Add GN manpage command.
Replace shell script with new Python one in GYP build as well.
BUG=
Review URL: https://codereview.chromium.org/944893006
Cr-Commit-Position: refs/heads/master@{#317831}
Diffstat (limited to 'chrome/chrome_exe.gypi')
-rw-r--r-- | chrome/chrome_exe.gypi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 00dc15588..e30a734 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -133,14 +133,15 @@ }], ], 'inputs': [ - 'tools/build/linux/sed.sh', + 'tools/build/linux/sed.py', 'app/resources/manpage.1.in', ], 'outputs': [ '<(PRODUCT_DIR)/chrome.1', ], 'action': [ - 'tools/build/linux/sed.sh', + 'python', + 'tools/build/linux/sed.py', 'app/resources/manpage.1.in', '<@(_outputs)', '-e', 's/@@NAME@@/<(name)/', |