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

Side by Side Diff: deps/compiler.deps/DEPS

Issue 9353015: Remove dartc optimizing backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
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 "gyp_rev": "@937", 6 "gyp_rev": "@937",
7 "co19_rev": "@119", 7 "co19_rev": "@119",
8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/",
9 "dart_branch": "/branches/bleeding_edge/dart", 9 "dart_branch": "/branches/bleeding_edge/dart",
10 "closure_compiler_rev": "@1519",
11 } 10 }
12 11
13 deps = { 12 deps = {
14 "compiler": 13 "compiler":
15 Var("dart_branch") + "/compiler", 14 Var("dart_branch") + "/compiler",
16 15
17 "corelib": 16 "corelib":
18 Var("dart_branch") + "/corelib", 17 Var("dart_branch") + "/corelib",
19 18
20 "language": 19 "language":
(...skipping 24 matching lines...) Expand all
45 "third_party/gyp": 44 "third_party/gyp":
46 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), 45 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"),
47 46
48 # Build time dependencies for dartc 47 # Build time dependencies for dartc
49 "third_party/apache_ant": 48 "third_party/apache_ant":
50 Var("dart_branch") + "/third_party/apache_ant", 49 Var("dart_branch") + "/third_party/apache_ant",
51 50
52 "third_party/args4j": 51 "third_party/args4j":
53 Var("dart_branch") + "/third_party/args4j", 52 Var("dart_branch") + "/third_party/args4j",
54 53
55 "third_party/closure_compiler_src":
56 "http://closure-compiler.googlecode.com/svn/trunk" + Var("closure_compiler_r ev"),
57
58 "third_party/guava": 54 "third_party/guava":
59 Var("dart_branch") + "/third_party/guava", 55 Var("dart_branch") + "/third_party/guava",
60 56
61 "third_party/hamcrest": 57 "third_party/hamcrest":
62 Var("dart_branch") + "/third_party/hamcrest", 58 Var("dart_branch") + "/third_party/hamcrest",
63 59
64 "third_party/json": 60 "third_party/json":
65 Var("dart_branch") + "/third_party/json", 61 Var("dart_branch") + "/third_party/json",
66 62
67 "third_party/junit": 63 "third_party/junit":
(...skipping 12 matching lines...) Expand all
80 hooks = [ 76 hooks = [
81 { 77 {
82 "pattern": ".", 78 "pattern": ".",
83 "action": ["python", "compiler/scripts/generate_my_projects.py"], 79 "action": ["python", "compiler/scripts/generate_my_projects.py"],
84 }, 80 },
85 { 81 {
86 "pattern": ".", 82 "pattern": ".",
87 "action": ["python", "tools/generate_projects.py", "compiler"], 83 "action": ["python", "tools/generate_projects.py", "compiler"],
88 }, 84 },
89 ] 85 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698