| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "pnacl_binutils_rev": "760c9df03b3183c00ae950dfae5e5262d1e561ab", | 2 "pnacl_binutils_rev": "be24de8cf82956c0b6e9856630f32429005752ae", |
| 3 "pnacl_llvm_rev": "c0d9b337419b72e69cbd9c64f84ae39560ab344f", | 3 "pnacl_llvm_rev": "c0d9b337419b72e69cbd9c64f84ae39560ab344f", |
| 4 "pnacl_gcc_rev": "e09efac3663fa23abf48941d4844e1876659b7c4", | 4 "pnacl_gcc_rev": "e09efac3663fa23abf48941d4844e1876659b7c4", |
| 5 | 5 |
| 6 "glibc_rev": "ef989bae60d93e2906847b367becbd0e7f27679f", | 6 "glibc_rev": "ef989bae60d93e2906847b367becbd0e7f27679f", |
| 7 "newlib_rev": "6a104f495cf91387ecec5f5f87c6e12d345b204c", | 7 "newlib_rev": "6a104f495cf91387ecec5f5f87c6e12d345b204c", |
| 8 "pnacl_llvm_testsuite_rev": "0d6d7c909e6f7cc83e2b85c11332e9347b73dfb9", | 8 "pnacl_llvm_testsuite_rev": "0d6d7c909e6f7cc83e2b85c11332e9347b73dfb9", |
| 9 "compiler_rt_rev": "cad11a9ea0008d18125e81beafc27271ee71926e", | 9 "compiler_rt_rev": "cad11a9ea0008d18125e81beafc27271ee71926e", |
| 10 # clang_rev should be the first clang commit after the llvm commit from | 10 # clang_rev should be the first clang commit after the llvm commit from |
| 11 # which the local llvm is branched. Unfortunately because the llvm and | 11 # which the local llvm is branched. Unfortunately because the llvm and |
| 12 # clang git repos are separate (even upstream), the same revision cannot | 12 # clang git repos are separate (even upstream), the same revision cannot |
| (...skipping 20 matching lines...) Expand all Loading... |
| 33 "compiler-rt": | 33 "compiler-rt": |
| 34 Var("nacl_base_readonly") + "/pnacl-compiler-rt.git@" + Var("compiler_rt_rev
"), | 34 Var("nacl_base_readonly") + "/pnacl-compiler-rt.git@" + Var("compiler_rt_rev
"), |
| 35 "clang": | 35 "clang": |
| 36 Var("llvm_upstream_base") + "/clang.git@" + Var("clang_rev"), | 36 Var("llvm_upstream_base") + "/clang.git@" + Var("clang_rev"), |
| 37 } | 37 } |
| 38 | 38 |
| 39 skip_child_includes = [ | 39 skip_child_includes = [ |
| 40 'git', | 40 'git', |
| 41 'src', | 41 'src', |
| 42 ] | 42 ] |
| OLD | NEW |