Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 if [ $COMP_CWORD -eq 1 ]; then | 68 if [ $COMP_CWORD -eq 1 ]; then |
| 69 __webkit-patch_generate_reply "--help" | 69 __webkit-patch_generate_reply "--help" |
| 70 return | 70 return |
| 71 fi | 71 fi |
| 72 } | 72 } |
| 73 | 73 |
| 74 complete -F _webkit-patch_complete webkit-patch | 74 complete -F _webkit-patch_complete webkit-patch |
| 75 complete -o default -W "--continue --fix-merged --help --no-continue --no-warnin gs --warnings -c -f -h -w" resolve-ChangeLogs | 75 complete -o default -W "--continue --fix-merged --help --no-continue --no-warnin gs --warnings -c -f -h -w" resolve-ChangeLogs |
| 76 complete -o default -W "--bug --diff --git-commit --git-index --git-reviewer --h elp --no-update --no-write --open --update --write -d -h -o" prepare-ChangeLog | 76 complete -o default -W "--bug --diff --git-commit --git-index --git-reviewer --h elp --no-update --no-write --open --update --write -d -h -o" prepare-ChangeLog |
| 77 complete -W "--clean --debug --help -h" build-webkit | 77 complete -W "--clean --debug --help -h" build-webkit |
| 78 complete -o default -W "--add-platform-exceptions --complex-text --configuration --guard-malloc --help --http --ignore-tests --launch-safari --leaks --merge-lea k-depth --new-test-results --no-http --no-show-results --no-new-test-results --n o-sample-on-timeout --no-strip-editing-callbacks --pixel-tests --platform --port --quiet --random --reset-results --results-directory --reverse --root --sample- on-timeout --singly --skipped --slowest --strict --strip-editing-callbacks --thr eaded --timeout --tolerance --use-remote-links-to-tests --valgrind --verbose -1 -c -g -h -i -l -m -o -p -q -t -v" run-webkit-tests | 78 complete -o default -W "--add-platform-exceptions --complex-text --configuration --guard-malloc --help --http --ignore-tests --launch-safari --leaks --merge-lea k-depth --new-test-results --no-http --no-show-results --no-sample-on-timeout -- no-strip-editing-callbacks --pixel-tests --platform --port --quiet --random --re set-results --results-directory --reverse --root --sample-on-timeout --singly -- skipped --slowest --strict --strip-editing-callbacks --threaded --timeout --tole rance --use-remote-links-to-tests --valgrind --verbose -1 -c -g -h -i -l -m -o - p -q -t -v" run-webkit-tests |
|
Dirk Pranke
2016/10/27 22:13:11
I suspect this file is completely unused. We shoul
| |
| OLD | NEW |