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

Side by Side Diff: standalone.deps/DEPS

Issue 814883003: Add unittest and matcher to the dartium and standalone deps files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/deps
Patch Set: Created 6 years 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 | « dartium.deps/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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 vars = { 5 vars = {
6 # Use this googlecode_url variable only if there is an internal mirror for it. 6 # Use this googlecode_url variable only if there is an internal mirror for it.
7 # If you do not know, use the full path while defining your new deps entry. 7 # If you do not know, use the full path while defining your new deps entry.
8 "googlecode_url": "http://%s.googlecode.com/svn", 8 "googlecode_url": "http://%s.googlecode.com/svn",
9 "dart_branch": "/branches/bleeding_edge", 9 "dart_branch": "/branches/bleeding_edge",
10 10
11 "gyp_rev": "@1752", 11 "gyp_rev": "@1752",
12 "co19_rev": "@786", 12 "co19_rev": "@786",
13 "chromium_git": "https://chromium.googlesource.com", 13 "chromium_git": "https://chromium.googlesource.com",
14 14
15 # Revisions of /third_party/* dependencies. 15 # Revisions of /third_party/* dependencies.
16 "fake_async_rev": "@38614", 16 "fake_async_rev": "@38614",
17 "matcher_rev": "@43e2811b53ee3a8df862524c186bed89e29f703d",
17 "net_nss_rev": "@f81948e9a402db94287a43bb34a07ee0daf56cb5", 18 "net_nss_rev": "@f81948e9a402db94287a43bb34a07ee0daf56cb5",
18 "nss_rev": "@87b96db4268293187d7cf741907a6d5d1d8080e0", 19 "nss_rev": "@87b96db4268293187d7cf741907a6d5d1d8080e0",
19 "observe_rev": "@11f536784589a288d275462f7407a1f07ba4de75", 20 "observe_rev": "@11f536784589a288d275462f7407a1f07ba4de75",
20 "path_rev": "@a2d53a06f1cedf32363bdc5419476c33b9f728bc", 21 "path_rev": "@a2d53a06f1cedf32363bdc5419476c33b9f728bc",
21 "petitparser_rev" : "@37878", 22 "petitparser_rev" : "@37878",
22 "smoke_rev": "@52abda1f29d5c9aad1baa8424ac115912bafcc0d", 23 "smoke_rev": "@52abda1f29d5c9aad1baa8424ac115912bafcc0d",
23 "sqlite_rev": "@38811b79f42801662adc0458a25270ab690a6b81", 24 "sqlite_rev": "@38811b79f42801662adc0458a25270ab690a6b81",
24 "stack_trace_rev": "@22d92b32de066e4932867c3ab3c8d8f7d9f29f44", 25 "stack_trace_rev": "@22d92b32de066e4932867c3ab3c8d8f7d9f29f44",
26 "unittest_rev": "@2381a2e53080d4c8a499c2a9d4d224a96490feaf",
25 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", 27 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f",
26 "observatory_pub_packages_rev": "@42487", 28 "observatory_pub_packages_rev": "@42487",
27 } 29 }
28 30
29 deps = { 31 deps = {
30 "dart": 32 "dart":
31 Var("dart_branch") + "/dart", 33 Var("dart_branch") + "/dart",
32 34
33 # co19 tests. 35 # co19 tests.
34 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") + 36 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") +
(...skipping 21 matching lines...) Expand all
56 58
57 # Observatory stuff 59 # Observatory stuff
58 "dart/third_party/observatory_pub_packages": 60 "dart/third_party/observatory_pub_packages":
59 "/third_party/observatory_pub_packages" + 61 "/third_party/observatory_pub_packages" +
60 Var("observatory_pub_packages_rev"), 62 Var("observatory_pub_packages_rev"),
61 63
62 # Stuff needed to run pkg tests. 64 # Stuff needed to run pkg tests.
63 # External packages. 65 # External packages.
64 "dart/third_party/pkg/fake_async": 66 "dart/third_party/pkg/fake_async":
65 "/third_party/fake_async" + Var("fake_async_rev"), 67 "/third_party/fake_async" + Var("fake_async_rev"),
68 "dart/third_party/pkg/matcher":
69 "https://github.com/dart-lang/matcher.git" + Var("matcher_rev"),
66 "dart/third_party/pkg/observe": 70 "dart/third_party/pkg/observe":
67 "https://github.com/dart-lang/observe.git" + Var("observe_rev"), 71 "https://github.com/dart-lang/observe.git" + Var("observe_rev"),
68 "dart/third_party/pkg/path": 72 "dart/third_party/pkg/path":
69 "https://github.com/dart-lang/path.git" + Var("path_rev"), 73 "https://github.com/dart-lang/path.git" + Var("path_rev"),
70 "dart/third_party/pkg/petitparser": 74 "dart/third_party/pkg/petitparser":
71 "/third_party/petitparser" + Var("petitparser_rev"), 75 "/third_party/petitparser" + Var("petitparser_rev"),
72 "dart/third_party/pkg/smoke": 76 "dart/third_party/pkg/smoke":
73 "https://github.com/dart-lang/smoke.git" + Var("smoke_rev"), 77 "https://github.com/dart-lang/smoke.git" + Var("smoke_rev"),
74 "dart/third_party/pkg/stack_trace": 78 "dart/third_party/pkg/stack_trace":
75 "https://github.com/dart-lang/stack_trace.git" + Var("stack_trace_rev"), 79 "https://github.com/dart-lang/stack_trace.git" + Var("stack_trace_rev"),
80 "dart/third_party/pkg/unittest":
81 "https://github.com/dart-lang/unittest.git" + Var("unittest_rev"),
76 } 82 }
77 83
78 deps_os = { 84 deps_os = {
79 "win": { 85 "win": {
80 "third_party/cygwin": 86 "third_party/cygwin":
81 Var("chromium_git") + "/chromium/deps/cygwin.git" + 87 Var("chromium_git") + "/chromium/deps/cygwin.git" +
82 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", 88 "@c89e446b273697fadf3a10ff1007a97c0b7de6df",
83 }, 89 },
84 } 90 }
85 91
86 hooks = [ 92 hooks = [
87 { 93 {
88 "pattern": ".", 94 "pattern": ".",
89 "action": ["python", "dart/tools/gyp_dart.py", "runtime"], 95 "action": ["python", "dart/tools/gyp_dart.py", "runtime"],
90 }, 96 },
91 ] 97 ]
OLDNEW
« no previous file with comments | « dartium.deps/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698