| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": | 2 "webkit_trunk": |
| 3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "webkit_revision": "41057", | 4 "webkit_revision": "41057", |
| 5 } | 5 } |
| 6 | 6 |
| 7 | 7 |
| 8 deps = { | 8 deps = { |
| 9 "src/breakpad/src": | 9 "src/breakpad/src": |
| 10 "http://google-breakpad.googlecode.com/svn/trunk/src@285", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@285", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 "src/third_party/icu38": | 24 "src/third_party/icu38": |
| 25 "/trunk/deps/third_party/icu38@9252", | 25 "/trunk/deps/third_party/icu38@9252", |
| 26 | 26 |
| 27 "src/v8": | 27 "src/v8": |
| 28 "http://v8.googlecode.com/svn/trunk@1266", | 28 "http://v8.googlecode.com/svn/trunk@1266", |
| 29 | 29 |
| 30 "src/webkit/data/layout_tests/LayoutTests": | 30 "src/webkit/data/layout_tests/LayoutTests": |
| 31 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"), | 31 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"), |
| 32 | 32 |
| 33 "src/third_party/WebKit/WebKit": | 33 "src/third_party/WebKit/WebKit/mac": |
| 34 Var("webkit_trunk") + "/WebKit@" + Var("webkit_revision"), | 34 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
| 35 | 35 |
| 36 "src/third_party/WebKit/WebKitLibraries": | 36 "src/third_party/WebKit/WebKitLibraries": |
| 37 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 37 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 38 } | 38 } |
| 39 | 39 |
| 40 | 40 |
| 41 deps_os = { | 41 deps_os = { |
| 42 "win": { | 42 "win": { |
| 43 "src/third_party/cygwin": | 43 "src/third_party/cygwin": |
| 44 "/trunk/deps/third_party/cygwin@3248", | 44 "/trunk/deps/third_party/cygwin@3248", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 # checkdeps.py shouldn't check include paths for files in these dirs: | 77 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 78 skip_child_includes = [ | 78 skip_child_includes = [ |
| 79 "breakpad", | 79 "breakpad", |
| 80 "gears", | 80 "gears", |
| 81 "sdch", | 81 "sdch", |
| 82 "skia", | 82 "skia", |
| 83 "testing", | 83 "testing", |
| 84 "third_party", | 84 "third_party", |
| 85 "v8", | 85 "v8", |
| 86 ] | 86 ] |
| OLD | NEW |