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

Side by Side Diff: DEPS

Issue 9430028: Add function for generating validation signatures. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fixes Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | SConstruct » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # DEPS files look like -*- Python -*- 1 # DEPS files look like -*- Python -*-
2 2
3 vars = { 3 vars = {
4 # These two should be updated to the same revision whenever possible. 4 # These two should be updated to the same revision whenever possible.
5 "x86_toolchain_version": "7819", 5 "x86_toolchain_version": "7819",
6 "pnacl_toolchain_version": "7819", 6 "pnacl_toolchain_version": "7819",
7 7
8 # ARM trusted toolchain version cannot be changed for now. 8 # ARM trusted toolchain version cannot be changed for now.
9 "arm_trusted_toolchain_version": "7000", 9 "arm_trusted_toolchain_version": "7000",
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "third_party/jsoncpp/source/src/lib_json": 66 "third_party/jsoncpp/source/src/lib_json":
67 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + 67 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
68 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), 68 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
69 "third_party/lcov": 69 "third_party/lcov":
70 Var("chromium_trunk") + "/src/third_party/lcov@" + Var("lcov_rev"), 70 Var("chromium_trunk") + "/src/third_party/lcov@" + Var("lcov_rev"),
71 "third_party/lss": 71 "third_party/lss":
72 ((Var("googlecode_url") % "linux-syscall-support") + 72 ((Var("googlecode_url") % "linux-syscall-support") +
73 "/trunk/lss@" + Var("lss_rev")), 73 "/trunk/lss@" + Var("lss_rev")),
74 "third_party/khronos": 74 "third_party/khronos":
75 Var("chromium_trunk") + "/src/third_party/khronos@" + Var("chrome_rev"), 75 Var("chromium_trunk") + "/src/third_party/khronos@" + Var("chrome_rev"),
76 "third_party/openssl":
77 Var("chromium_trunk") + "/deps/third_party/openssl@" + Var("chrome_rev"),
76 "third_party/ply": 78 "third_party/ply":
77 Var("chromium_trunk") + "/src/third_party/ply@" + Var("chrome_rev"), 79 Var("chromium_trunk") + "/src/third_party/ply@" + Var("chrome_rev"),
78 "third_party/pyftpdlib": 80 "third_party/pyftpdlib":
79 Var("chromium_trunk") + "/src/third_party/pyftpdlib@" + Var("chrome_rev"), 81 Var("chromium_trunk") + "/src/third_party/pyftpdlib@" + Var("chrome_rev"),
80 "third_party/pyftpdlib/src": 82 "third_party/pyftpdlib/src":
81 (Var("googlecode_url") % "pyftpdlib") + "/trunk@888", 83 (Var("googlecode_url") % "pyftpdlib") + "/trunk@888",
82 "third_party/simplejson": 84 "third_party/simplejson":
83 (Var("chromium_trunk") + "/tools/build/third_party/simplejson@" + 85 (Var("chromium_trunk") + "/tools/build/third_party/simplejson@" +
84 Var("chrome_rev")), 86 Var("chrome_rev")),
85 "third_party/tlslite": 87 "third_party/tlslite":
(...skipping 27 matching lines...) Expand all
113 "--x86-version", Var("x86_toolchain_version"), 115 "--x86-version", Var("x86_toolchain_version"),
114 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), 116 "--arm-trusted-version", Var("arm_trusted_toolchain_version"),
115 "--pnacl-version", Var("pnacl_toolchain_version"), 117 "--pnacl-version", Var("pnacl_toolchain_version"),
116 "--keep"], 118 "--keep"],
117 }, 119 },
118 { 120 {
119 "pattern": ".", 121 "pattern": ".",
120 "action": ["python", "native_client/build/gyp_nacl"], 122 "action": ["python", "native_client/build/gyp_nacl"],
121 }, 123 },
122 ] 124 ]
OLDNEW
« no previous file with comments | « no previous file | SConstruct » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698