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

Side by Side Diff: src/native_client/DEPS

Issue 10641004: Speedup the validator-x86_64.c compilation by 15% (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/
Patch Set: Created 8 years, 6 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
OLDNEW
1 # DEPS files look like -*- Python -*- 1 # DEPS files look like -*- Python -*-
2 2
3 vars = { 3 vars = {
4 # Each of these toolchain revision numbers should only be updated 4 # Each of these toolchain revision numbers should only be updated
5 # whenever there has been a real change to the corresponding 5 # whenever there has been a real change to the corresponding
6 # toolchain, so that new toolchain tarballs are not downloaded 6 # toolchain, so that new toolchain tarballs are not downloaded
7 # unnecessarily. There is no need to keep these numbers in sync 7 # unnecessarily. There is no need to keep these numbers in sync
8 # with each other. 8 # with each other.
9 "x86_toolchain_version": "8953", 9 "x86_toolchain_version": "8953",
10 "pnacl_toolchain_version": "8995", 10 "pnacl_toolchain_version": "8995",
11 11
12 # ARM trusted toolchain version cannot be changed for now. 12 # ARM trusted toolchain version cannot be changed for now.
13 "arm_trusted_toolchain_version": "7004", 13 "arm_trusted_toolchain_version": "7004",
14 14
15 # When possible, keep chrome_rev and chromebinaries_rev at the same 15 # When possible, keep chrome_rev and chromebinaries_rev at the same
16 # value. chromebinaries_rev should match LKGR so that we can download 16 # value. chromebinaries_rev should match LKGR so that we can download
17 # the binaries, but sometimes chrome_rev needs to be more recent to get 17 # the binaries, but sometimes chrome_rev needs to be more recent to get
18 # source changes when LKGR is lagging too far back. 18 # source changes when LKGR is lagging too far back.
19 "chromebinaries_rev": "142600", 19 "chromebinaries_rev": "142600",
20 "chrome_rev": "142600", 20 "chrome_rev": "142600",
21 # NOTE! These four should match their counterparts in chromium/src/DEPS. 21 # NOTE! These four should match their counterparts in chromium/src/DEPS.
22 # Be sure to update them when updating chrome_rev, above. 22 # Be sure to update them when updating chrome_rev, above.
23 "gtest_rev": "613", 23 "gtest_rev": "613",
24 "gyp_rev": "1415", 24 "gyp_rev": "1415",
25 "jsoncpp_revision": "248", 25 "jsoncpp_revision": "248",
26 "lss_rev": "11", 26 "lss_rev": "11",
27 27
28 "lcov_rev": "54822", 28 "lcov_rev": "54822",
29 "python_26_rev": "53573", 29 "python_26_rev": "53573",
30 "tools_rev": "8673", 30 "tools_rev": "9002",
Mark Seaborn 2012/06/21 18:15:58 SVN revision 9002 does not exist currently. You a
31 31
32 # These are URL prefixes rather than revision numbers, so keep them separate. 32 # These are URL prefixes rather than revision numbers, so keep them separate.
33 "chromium_trunk": "http://src.chromium.org/svn/trunk", 33 "chromium_trunk": "http://src.chromium.org/svn/trunk",
34 "googlecode_url": "http://%s.googlecode.com/svn", 34 "googlecode_url": "http://%s.googlecode.com/svn",
35 "native_client_trunk": "http://src.chromium.org/native_client/trunk", 35 "native_client_trunk": "http://src.chromium.org/native_client/trunk",
36 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", 36 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk",
37 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 37 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
38 } 38 }
39 39
40 deps = { 40 deps = {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "--x86-version", Var("x86_toolchain_version"), 130 "--x86-version", Var("x86_toolchain_version"),
131 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), 131 "--arm-trusted-version", Var("arm_trusted_toolchain_version"),
132 "--pnacl-version", Var("pnacl_toolchain_version"), 132 "--pnacl-version", Var("pnacl_toolchain_version"),
133 "--keep"], 133 "--keep"],
134 }, 134 },
135 { 135 {
136 "pattern": ".", 136 "pattern": ".",
137 "action": ["python", "native_client/build/gyp_nacl"], 137 "action": ["python", "native_client/build/gyp_nacl"],
138 }, 138 },
139 ] 139 ]
OLDNEW
« no previous file with comments | « deps/third_party/ragel/ragel.linux ('k') | src/native_client/src/trusted/validator_ragel/gen/validator-x86_64.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698