| 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 28 matching lines...) Expand all Loading... |
| 39 "+third_party/fdlibm", | 39 "+third_party/fdlibm", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 # checkdeps.py shouldn't check for includes in these directories: | 42 # checkdeps.py shouldn't check for includes in these directories: |
| 43 skip_child_includes = [ | 43 skip_child_includes = [ |
| 44 "build", | 44 "build", |
| 45 "third_party", | 45 "third_party", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 hooks = [ | 48 hooks = [ |
| 49 { |
| 50 # This clobbers when necessary (based on get_landmines.py). It must be the |
| 51 # first hook so that other things that get/generate into the output |
| 52 # directory will not subsequently be clobbered. |
| 53 'name': 'landmines', |
| 54 'pattern': '.', |
| 55 'action': [ |
| 56 'python', |
| 57 'v8/build/landmines.py', |
| 58 ], |
| 59 }, |
| 49 # Pull clang-format binaries using checked-in hashes. | 60 # Pull clang-format binaries using checked-in hashes. |
| 50 { | 61 { |
| 51 "name": "clang_format_win", | 62 "name": "clang_format_win", |
| 52 "pattern": ".", | 63 "pattern": ".", |
| 53 "action": [ "download_from_google_storage", | 64 "action": [ "download_from_google_storage", |
| 54 "--no_resume", | 65 "--no_resume", |
| 55 "--platform=win32", | 66 "--platform=win32", |
| 56 "--no_auth", | 67 "--no_auth", |
| 57 "--bucket", "chromium-clang-format", | 68 "--bucket", "chromium-clang-format", |
| 58 "-s", "v8/buildtools/win/clang-format.exe.sha1", | 69 "-s", "v8/buildtools/win/clang-format.exe.sha1", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'name': 'clang', | 108 'name': 'clang', |
| 98 'pattern': '.', | 109 'pattern': '.', |
| 99 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 100 }, | 111 }, |
| 101 { | 112 { |
| 102 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 103 "pattern": ".", | 114 "pattern": ".", |
| 104 "action": ["python", "v8/build/gyp_v8"], | 115 "action": ["python", "v8/build/gyp_v8"], |
| 105 }, | 116 }, |
| 106 ] | 117 ] |
| OLD | NEW |