| 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 17 matching lines...) Expand all  Loading... | 
|   28   "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_
     simd.git" + "@" + "c8ef63c728283debc25891123eb00482fee4b8cd", |   28   "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_
     simd.git" + "@" + "c8ef63c728283debc25891123eb00482fee4b8cd", | 
|   29   "v8/test/test262/data": |   29   "v8/test/test262/data": | 
|   30     Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "57d3e2216f
     a86ad63b6c0a54914ba9dcbff96003", |   30     Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "57d3e2216f
     a86ad63b6c0a54914ba9dcbff96003", | 
|   31   "v8/tools/clang": |   31   "v8/tools/clang": | 
|   32     Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "a00149535c011c08b6
     e8cc583a1f10f38d3cdaf9", |   32     Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "a00149535c011c08b6
     e8cc583a1f10f38d3cdaf9", | 
|   33 } |   33 } | 
|   34  |   34  | 
|   35 deps_os = { |   35 deps_os = { | 
|   36   "android": { |   36   "android": { | 
|   37     "v8/third_party/android_tools": |   37     "v8/third_party/android_tools": | 
|   38       Var("git_url") + "/android_tools.git" + "@" + "f4c36ad89b2696b37d9cd7ca7d9
     84b691888b188", |   38       Var("git_url") + "/android_tools.git" + "@" + "19728471dd63a96866828848840
     3286b68e4ae9e", | 
|   39   }, |   39   }, | 
|   40   "win": { |   40   "win": { | 
|   41     "v8/third_party/cygwin": |   41     "v8/third_party/cygwin": | 
|   42       Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
     10ff1007a97c0b7de6df", |   42       Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
     10ff1007a97c0b7de6df", | 
|   43   } |   43   } | 
|   44 } |   44 } | 
|   45  |   45  | 
|   46 include_rules = [ |   46 include_rules = [ | 
|   47   # Everybody can use some things. |   47   # Everybody can use some things. | 
|   48   "+include", |   48   "+include", | 
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  216     'name': 'clang', |  216     'name': 'clang', | 
|  217     'pattern': '.', |  217     'pattern': '.', | 
|  218     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |  218     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 
|  219   }, |  219   }, | 
|  220   { |  220   { | 
|  221     # A change to a .gyp, .gypi, or to GYP itself should run the generator. |  221     # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 
|  222     "pattern": ".", |  222     "pattern": ".", | 
|  223     "action": ["python", "v8/build/gyp_v8"], |  223     "action": ["python", "v8/build/gyp_v8"], | 
|  224   }, |  224   }, | 
|  225 ] |  225 ] | 
| OLD | NEW |