| 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": | 10 "v8/build": |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "v8/third_party/cygwin": | 45 "v8/third_party/cygwin": |
| 46 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
10ff1007a97c0b7de6df", | 46 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
10ff1007a97c0b7de6df", |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 | 49 |
| 50 recursedeps = [ 'v8/third_party/android_tools' ] | 50 recursedeps = [ 'v8/third_party/android_tools' ] |
| 51 | 51 |
| 52 include_rules = [ | 52 include_rules = [ |
| 53 # Everybody can use some things. | 53 # Everybody can use some things. |
| 54 "+include", | 54 "+include", |
| 55 "+libplatform", |
| 55 "+unicode", | 56 "+unicode", |
| 56 "+third_party/fdlibm", | 57 "+third_party/fdlibm", |
| 57 ] | 58 ] |
| 58 | 59 |
| 59 # checkdeps.py shouldn't check for includes in these directories: | 60 # checkdeps.py shouldn't check for includes in these directories: |
| 60 skip_child_includes = [ | 61 skip_child_includes = [ |
| 61 "build", | 62 "build", |
| 62 "gypfiles", | 63 "gypfiles", |
| 63 "third_party", | 64 "third_party", |
| 64 ] | 65 ] |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 'name': 'clang', | 236 'name': 'clang', |
| 236 'pattern': '.', | 237 'pattern': '.', |
| 237 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 238 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 238 }, | 239 }, |
| 239 { | 240 { |
| 240 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 241 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 241 "pattern": ".", | 242 "pattern": ".", |
| 242 "action": ["python", "v8/gypfiles/gyp_v8"], | 243 "action": ["python", "v8/gypfiles/gyp_v8"], |
| 243 }, | 244 }, |
| 244 ] | 245 ] |
| OLD | NEW |