| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "chromium_trunk": "http://src.chromium.org/svn/trunk", | 2 "chromium_trunk": "http://src.chromium.org/svn/trunk", |
| 3 "native_client_trunk": "http://nativeclient.googlecode.com/svn/trunk", | 3 "native_client_trunk": "http://nativeclient.googlecode.com/svn/trunk", |
| 4 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", | 4 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", |
| 5 | 5 |
| 6 "breakpad_rev": "452", | 6 "breakpad_rev": "452", |
| 7 "chrome_rev": "51741", | 7 "chrome_rev": "51741", |
| 8 "nacl_breakpad_gyp_rev": "1806", | 8 "nacl_breakpad_gyp_rev": "1806", |
| 9 "gyp_rev": "805", | 9 "gyp_rev": "805", |
| 10 "gtest_rev": "267", | 10 "gtest_rev": "267", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "http://google-breakpad.googlecode.com/svn/trunk/src@" + | 35 "http://google-breakpad.googlecode.com/svn/trunk/src@" + |
| 36 Var("breakpad_rev"), | 36 Var("breakpad_rev"), |
| 37 "native_client/src/third_party/protobuf/src": | 37 "native_client/src/third_party/protobuf/src": |
| 38 "http://protobuf.googlecode.com/svn/trunk@" + Var("protobuf_rev"), | 38 "http://protobuf.googlecode.com/svn/trunk@" + Var("protobuf_rev"), |
| 39 "third_party/gcc": | 39 "third_party/gcc": |
| 40 Var("native_client_trunk") + "/src/third_party/gcc@" + Var("tools_rev"), | 40 Var("native_client_trunk") + "/src/third_party/gcc@" + Var("tools_rev"), |
| 41 "third_party/gdb": | 41 "third_party/gdb": |
| 42 Var("native_client_trunk") + "/src/third_party/gdb@" + Var("tools_rev"), | 42 Var("native_client_trunk") + "/src/third_party/gdb@" + Var("tools_rev"), |
| 43 "third_party/gmp": | 43 "third_party/gmp": |
| 44 Var("native_client_trunk") + "/src/third_party/gmp@" + Var("tools_rev"), | 44 Var("native_client_trunk") + "/src/third_party/gmp@" + Var("tools_rev"), |
| 45 "third_party/llvm": | |
| 46 Var("native_client_trunk") + "/src/third_party/llvm@" + Var("tools_rev"), | |
| 47 "third_party/qemu": | 45 "third_party/qemu": |
| 48 Var("native_client_trunk") + "/src/third_party/qemu@" + Var("tools_rev"), | 46 Var("native_client_trunk") + "/src/third_party/qemu@" + Var("tools_rev"), |
| 49 "third_party/mpfr": | 47 "third_party/mpfr": |
| 50 Var("native_client_trunk") + "/src/third_party/mpfr@" + Var("tools_rev"), | 48 Var("native_client_trunk") + "/src/third_party/mpfr@" + Var("tools_rev"), |
| 51 "third_party/newlib": | 49 "third_party/newlib": |
| 52 Var("native_client_trunk") + "/src/third_party/newlib@" + Var("tools_rev"), | 50 Var("native_client_trunk") + "/src/third_party/newlib@" + Var("tools_rev"), |
| 53 "third_party/scons": | 51 "third_party/scons": |
| 54 Var("native_client_trunk") + "/src/third_party/scons@" + Var("tools_rev"), | 52 Var("native_client_trunk") + "/src/third_party/scons@" + Var("tools_rev"), |
| 55 "third_party/sdl": | 53 "third_party/sdl": |
| 56 Var("native_client_trunk") + "/src/third_party/sdl@" + Var("tools_rev"), | 54 Var("native_client_trunk") + "/src/third_party/sdl@" + Var("tools_rev"), |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } | 92 } |
| 95 | 93 |
| 96 hooks = [ | 94 hooks = [ |
| 97 { | 95 { |
| 98 "pattern": ".", | 96 "pattern": ".", |
| 99 "action": ["python", "native_client/build/gyp_nacl", | 97 "action": ["python", "native_client/build/gyp_nacl", |
| 100 "native_client/build/all.gyp"], | 98 "native_client/build/all.gyp"], |
| 101 }, | 99 }, |
| 102 ] | 100 ] |
| 103 | 101 |
| OLD | NEW |