| OLD | NEW |
| 1 deps = { | 1 deps = { |
| 2 "src/third_party/libapps": | 2 "src/third_party/libapps": |
| 3 "https://chromium.googlesource.com/apps/libapps.git@a13cbbf", | 3 "https://chromium.googlesource.com/apps/libapps.git@a13cbbf", |
| 4 "src/third_party/zip.js": | 4 "src/third_party/zip.js": |
| 5 "https://github.com/gildas-lormeau/zip.js.git@4c93974", | 5 "https://github.com/gildas-lormeau/zip.js.git@4c93974", |
| 6 "src/third_party/clang_tools": | 6 "src/third_party/clang_tools": |
| 7 "https://chromium.googlesource.com/chromium/src/tools/clang.git@7aa7166", | 7 "https://chromium.googlesource.com/chromium/src/tools/clang.git@7aa7166", |
| 8 } | 8 } |
| 9 | 9 |
| 10 deps_os = { | 10 deps_os = { |
| 11 "win": { | 11 "win": { |
| 12 "src/third_party/cygwin": | 12 "src/third_party/cygwin": |
| 13 "https://chromium.googlesource.com/chromium/deps/cygwin.git@4fbd5b9", | 13 "https://chromium.googlesource.com/chromium/deps/cygwin.git@4fbd5b9", |
| 14 "src/native_client/build": | |
| 15 "https://src.chromium.org/native_client/trunk/src/native_client/build" | |
| 16 }, | 14 }, |
| 17 } | 15 } |
| 18 | 16 |
| 19 hooks = [ | 17 hooks = [ |
| 20 { | 18 { |
| 21 "name": "clean_pyc", | 19 "name": "clean_pyc", |
| 22 "pattern": ".", | 20 "pattern": ".", |
| 23 "action": [ | 21 "action": [ |
| 24 "python", "src/build_tools/clean_pyc.py", "src/build_tools", "src/lib" | 22 "python", "src/build_tools/clean_pyc.py", "src/build_tools", "src/lib" |
| 25 ], | 23 ], |
| 26 }, | 24 }, |
| 27 { | 25 { |
| 28 "name": "pip_install", | 26 "name": "pip_install", |
| 29 "pattern": ".", | 27 "pattern": ".", |
| 30 "action": [ | 28 "action": [ |
| 31 "src/build_tools/pip_install.sh" | 29 "src/build_tools/pip_install.sh" |
| 32 ], | 30 ], |
| 33 }, | 31 }, |
| 34 ] | 32 ] |
| OLD | NEW |