| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "chromium_trunk": | 2 "chromium_trunk": |
| 3 "http://src.chromium.org/svn/trunk", | 3 "http://src.chromium.org/svn/trunk", |
| 4 "nixysa_rev": "25", | 4 "nixysa_rev": "25", |
| 5 "chromium_rev": "19057", | 5 "chromium_rev": "19057", |
| 6 "o3d_code_rev": "87", | 6 "o3d_code_rev": "91", |
| 7 } | 7 } |
| 8 | 8 |
| 9 deps = { | 9 deps = { |
| 10 "o3d/o3d_assets": | 10 "o3d/o3d_assets": |
| 11 "http://o3d.googlecode.com/svn/trunk/googleclient/o3d_assets@" + Var("o3d_co
de_rev"), | 11 "http://o3d.googlecode.com/svn/trunk/googleclient/o3d_assets@" + Var("o3d_co
de_rev"), |
| 12 | 12 |
| 13 "third_party/antlr3": | 13 "third_party/antlr3": |
| 14 "http://o3d.googlecode.com/svn/trunk/googleclient/third_party/antlr3@" + Var
("o3d_code_rev"), | 14 "http://o3d.googlecode.com/svn/trunk/googleclient/third_party/antlr3@" + Var
("o3d_code_rev"), |
| 15 | 15 |
| 16 "third_party/cg": | 16 "third_party/cg": |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 }, | 129 }, |
| 130 } | 130 } |
| 131 | 131 |
| 132 hooks = [ | 132 hooks = [ |
| 133 { | 133 { |
| 134 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 134 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 135 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 135 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 136 "action": ["python", "tools/gyp/gyp_dogfood", "o3d/build/all.gyp", "--depth"
, ".."], | 136 "action": ["python", "tools/gyp/gyp_dogfood", "o3d/build/all.gyp", "--depth"
, ".."], |
| 137 }, | 137 }, |
| 138 ] | 138 ] |
| OLD | NEW |