OLD | NEW |
1 vars = { | 1 vars = { |
2 "pnacl_llvm_rev": "9c175b57efc1897b3d801696a60a0b80992b0310", | 2 "pnacl_llvm_rev": "228957b28f4ebb833c7417aa1d773dc77721bb45", |
3 "pnacl_gcc_rev": "a8b45d06c8fdf36cfdb7c996393940077097d988", | 3 "pnacl_gcc_rev": "a8b45d06c8fdf36cfdb7c996393940077097d988", |
4 | 4 |
5 "glibc_rev": "ef989bae60d93e2906847b367becbd0e7f27679f", | 5 "glibc_rev": "ef989bae60d93e2906847b367becbd0e7f27679f", |
6 "newlib_rev": "67e351079b71e78eaad782a19ffa9f3ff2c1d78d", | 6 "newlib_rev": "67e351079b71e78eaad782a19ffa9f3ff2c1d78d", |
7 "pnacl_llvm_testsuite_rev": "20a163d6fa5a1d0a398792110c7ea5c48e44e600", | 7 "pnacl_llvm_testsuite_rev": "20a163d6fa5a1d0a398792110c7ea5c48e44e600", |
8 "compiler_rt_rev": "cad11a9ea0008d18125e81beafc27271ee71926e", | 8 "compiler_rt_rev": "cad11a9ea0008d18125e81beafc27271ee71926e", |
9 # clang_rev should be the first clang commit after the llvm commit from | 9 # clang_rev should be the first clang commit after the llvm commit from |
10 # which the local llvm is branched. Unfortunately because the llvm and | 10 # which the local llvm is branched. Unfortunately because the llvm and |
11 # clang git repos are separate (even upstream), the same revision cannot | 11 # clang git repos are separate (even upstream), the same revision cannot |
12 # be used for both of them, the way it can with SVN. | 12 # be used for both of them, the way it can with SVN. |
(...skipping 17 matching lines...) Expand all Loading... |
30 "compiler-rt": | 30 "compiler-rt": |
31 Var("nacl_base_readonly") + "/pnacl-compiler-rt.git@" + Var("compiler_rt_rev
"), | 31 Var("nacl_base_readonly") + "/pnacl-compiler-rt.git@" + Var("compiler_rt_rev
"), |
32 "clang": | 32 "clang": |
33 Var("llvm_upstream_base") + "/clang.git@" + Var("clang_rev"), | 33 Var("llvm_upstream_base") + "/clang.git@" + Var("clang_rev"), |
34 } | 34 } |
35 | 35 |
36 skip_child_includes = [ | 36 skip_child_includes = [ |
37 'git', | 37 'git', |
38 'src', | 38 'src', |
39 ] | 39 ] |
OLD | NEW |