| OLD | NEW |
| 1 # Note: The buildbots evaluate this file with CWD set to the parent | 1 # Note: The buildbots evaluate this file with CWD set to the parent |
| 2 # directory and assume that the root of the checkout is in ./v8/, so | 2 # directory and assume that the root of the checkout is in ./v8/, so |
| 3 # all paths in here must match this assumption. | 3 # all paths in here must match this assumption. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 "git_url": "https://chromium.googlesource.com", | 6 "git_url": "https://chromium.googlesource.com", |
| 7 } | 7 } |
| 8 | 8 |
| 9 deps = { | 9 deps = { |
| 10 "v8/build/gyp": | 10 "v8/build/gyp": |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 deps_os = { | 24 deps_os = { |
| 25 "android": { | 25 "android": { |
| 26 "v8/third_party/android_tools": | 26 "v8/third_party/android_tools": |
| 27 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19
b92344be2b271", | 27 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19
b92344be2b271", |
| 28 }, | 28 }, |
| 29 "win": { | 29 "win": { |
| 30 "v8/third_party/cygwin": | 30 "v8/third_party/cygwin": |
| 31 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
10ff1007a97c0b7de6df", | 31 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
10ff1007a97c0b7de6df", |
| 32 "v8/third_party/python_26": | |
| 33 Var("git_url") + "/chromium/deps/python_26.git" + "@" + "67d19f904470effe3
122d27101cc5a8195abd157", | |
| 34 } | 32 } |
| 35 } | 33 } |
| 36 | 34 |
| 37 include_rules = [ | 35 include_rules = [ |
| 38 # Everybody can use some things. | 36 # Everybody can use some things. |
| 39 "+include", | 37 "+include", |
| 40 "+unicode", | 38 "+unicode", |
| 41 "+third_party/fdlibm", | 39 "+third_party/fdlibm", |
| 42 ] | 40 ] |
| 43 | 41 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'name': 'clang', | 86 'name': 'clang', |
| 89 'pattern': '.', | 87 'pattern': '.', |
| 90 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 91 }, | 89 }, |
| 92 { | 90 { |
| 93 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 94 "pattern": ".", | 92 "pattern": ".", |
| 95 "action": ["python", "v8/build/gyp_v8"], | 93 "action": ["python", "v8/build/gyp_v8"], |
| 96 }, | 94 }, |
| 97 ] | 95 ] |
| OLD | NEW |