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 | |
Tyler Breisacher (Chromium)
2015/02/25 00:17:23
Let's remove this and just make it part of the off
| |
13 done | |
OLD | NEW |