Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 schema_compiler_dir=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd) | |
| 4 chromium_src_dir="${schema_compiler_dir}/../.." | |
| 5 | |
| 6 set -e | |
| 7 | |
| 8 for f in ${chromium_src_dir}/chrome/common/extensions/api/*.idl; do | |
| 9 "${schema_compiler_dir}/compiler.py" "${f}" \ | |
| 10 --root=${chromium_src_dir} \ | |
| 11 --generator=externs | |
| 12 # Just printing to stdout for now | |
| 13 done | |
| OLD | NEW |