Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: DEPS_gyp

Issue 164035: Update v8 to 1.3.2, same as chrome. That version has a fix for Linux. (Closed)
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 "chromium_trunk": "http://src.chromium.org/svn/trunk", 2 "chromium_trunk": "http://src.chromium.org/svn/trunk",
3 "nixysa_rev": "29", 3 "nixysa_rev": "29",
4 "chromium_rev": "21287", 4 "chromium_rev": "21287",
5 "o3d_code_rev": "109", 5 "o3d_code_rev": "109",
6 "skia_rev": "279", 6 "skia_rev": "279",
7 "gyp_rev": "563", 7 "gyp_rev": "563",
8 "gtest_rev": "267", 8 "gtest_rev": "267",
9 "gflags_rev": "30", 9 "gflags_rev": "30",
10 "breakpad_rev": "346", 10 "breakpad_rev": "346",
11 "v8_rev": "2507", 11 "v8_rev": "2624",
12 "icu38_rev": "20192", 12 "icu38_rev": "20192",
13 } 13 }
14 14
15 deps = { 15 deps = {
16 "o3d/o3d_assets": 16 "o3d/o3d_assets":
17 "http://o3d.googlecode.com/svn/trunk/googleclient/o3d_assets@" + Var("o3d_co de_rev"), 17 "http://o3d.googlecode.com/svn/trunk/googleclient/o3d_assets@" + Var("o3d_co de_rev"),
18 18
19 "third_party/antlr3": 19 "third_party/antlr3":
20 "http://o3d.googlecode.com/svn/trunk/googleclient/third_party/antlr3@" + Var ("o3d_code_rev"), 20 "http://o3d.googlecode.com/svn/trunk/googleclient/third_party/antlr3@" + Var ("o3d_code_rev"),
21 21
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "third_party/libjpeg": 69 "third_party/libjpeg":
70 Var("chromium_trunk") + "/src/third_party/libjpeg@" + Var("chromium_rev"), 70 Var("chromium_trunk") + "/src/third_party/libjpeg@" + Var("chromium_rev"),
71 71
72 "third_party/libpng": 72 "third_party/libpng":
73 Var("chromium_trunk") + "/src/third_party/libpng@" + Var("chromium_rev"), 73 Var("chromium_trunk") + "/src/third_party/libpng@" + Var("chromium_rev"),
74 74
75 "third_party/zlib": 75 "third_party/zlib":
76 Var("chromium_trunk") + "/src/third_party/zlib@" + Var("chromium_rev"), 76 Var("chromium_trunk") + "/src/third_party/zlib@" + Var("chromium_rev"),
77 77
78 "v8": 78 "v8":
79 "http://v8.googlecode.com/svn/branches/1.2@" + Var("v8_rev"), 79 "http://v8.googlecode.com/svn/trunk@" + Var("v8_rev"),
80 80
81 "testing": 81 "testing":
82 Var("chromium_trunk") + "/src/testing@" + Var("chromium_rev"), 82 Var("chromium_trunk") + "/src/testing@" + Var("chromium_rev"),
83 83
84 "skia": 84 "skia":
85 Var("chromium_trunk") + "/src/skia@" + Var("chromium_rev"), 85 Var("chromium_trunk") + "/src/skia@" + Var("chromium_rev"),
86 86
87 "breakpad": 87 "breakpad":
88 Var("chromium_trunk") + "/src/breakpad@" + Var("chromium_rev"), 88 Var("chromium_trunk") + "/src/breakpad@" + Var("chromium_rev"),
89 89
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 }, 135 },
136 } 136 }
137 137
138 hooks = [ 138 hooks = [
139 { 139 {
140 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. 140 # A change to a .gyp, .gypi, or to GYP itself shound run the generator.
141 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", 141 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]",
142 "action": ["python", "tools/gyp/gyp", "o3d/build/all.gyp", "--depth", ".."], 142 "action": ["python", "tools/gyp/gyp", "o3d/build/all.gyp", "--depth", ".."],
143 }, 143 },
144 ] 144 ]
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698