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

Side by Side Diff: DEPS

Issue 1450393002: Roll sdk dependency to 34357cdad108dcba734949bd13bd28c76ea285e0 (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 # Copyright (c) 2015, the Fletch 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.md file. 3 # BSD-style license that can be found in the LICENSE.md file.
4 4
5 5
6 vars = { 6 vars = {
7 # NOTE: This revision will be used for looking at 7 # NOTE: This revision will be used for looking at
8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz 8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz
9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz 9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz
10 "clang_rev": "245965", 10 "clang_rev": "245965",
11 11
12 "github_url": "https://github.com/%s.git", 12 "github_url": "https://github.com/%s.git",
13 13
14 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", 14 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638",
15 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8", 15 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8",
16 16
17 # Used by pkg/immi_samples. 17 # Used by pkg/immi_samples.
18 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc", 18 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc",
19 19
20 # Used by fletch_tests. 20 # Used by fletch_tests.
21 "isolate_tag": "@0.2.2", 21 "isolate_tag": "@0.2.2",
22 22
23 # When updating this, please remember: 23 # When updating this, please remember:
24 # 1. to use a commit on the branch "_temporary_fletch_patches". 24 # 1. to use a commit on the branch "_temporary_fletch_patches".
25 # 2. update package revisions below. 25 # 2. update package revisions below.
26 "dart_rev": "@f3ca4b2e0acf43b3ac8642cdda5afc10f4e503bb", 26 "dart_rev": "@8e49ae20ffc997a705bff3167394f3e47c982c1a",
27 27
28 # Please copy these package revisions from ../dart/DEPS when updating 28 # Please copy these package revisions from ../dart/DEPS when updating
29 # dart_rev: 29 # dart_rev:
30 "package_config_tag": "@0.1.3", 30 "package_config_tag": "@0.1.3",
31 "path_tag": "@1.3.6", 31 "path_tag": "@1.3.6",
32 "charcode_tag": "@1.1.0", 32 "charcode_tag": "@1.1.0",
33 "args_tag": "@0.13.0", 33 "args_tag": "@0.13.0",
34 "dart2js_info_rev" : "@2905970fbb12e40a749ce5f880bea989b820402",
35 "pub_semver_tag": "@1.2.1",
36 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e",
37
ahe 2015/11/17 16:44:08 Extra line.
sigurdm 2015/11/19 14:33:46 Done.
34 38
35 "lk_rev": "@b822b1f64f4a98ad10c9794e8ed20ab8ccba3d4a", 39 "lk_rev": "@b822b1f64f4a98ad10c9794e8ed20ab8ccba3d4a",
36 40
37 # We use mirrors of all github repos to guarantee reproducibility and 41 # We use mirrors of all github repos to guarantee reproducibility and
38 # consistency between what users see and what the bots see. 42 # consistency between what users see and what the bots see.
39 # We need the mirrors to not have 100+ bots pulling github constantly. 43 # We need the mirrors to not have 100+ bots pulling github constantly.
40 # We mirror our github repos on chromium git servers. 44 # We mirror our github repos on chromium git servers.
41 # DO NOT use this var if you don't see a mirror here: 45 # DO NOT use this var if you don't see a mirror here:
42 # https://chromium.googlesource.com/ 46 # https://chromium.googlesource.com/
43 # named like: 47 # named like:
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 80
77 "fletch/third_party/crypto": 81 "fletch/third_party/crypto":
78 (Var("github_mirror") % "crypto") + Var("crypto_rev"), 82 (Var("github_mirror") % "crypto") + Var("crypto_rev"),
79 83
80 "fletch/third_party/lk/lk-downstream": 84 "fletch/third_party/lk/lk-downstream":
81 (Var("github_url") % "travisg/lk") + Var("lk_rev"), 85 (Var("github_url") % "travisg/lk") + Var("lk_rev"),
82 86
83 "fletch/third_party/isolate": 87 "fletch/third_party/isolate":
84 "https://github.com/dart-lang/isolate.git" + Var("isolate_tag"), 88 "https://github.com/dart-lang/isolate.git" + Var("isolate_tag"),
85 89
90 "fletch/third_party/dart2js_info":
91 "https://github.com/dart-lang/dart2js_info.git" + Var("dart2js_info_rev"),
92
93 "fletch/third_party/pub_semver":
94 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"),
95
96 "fletch/third_party/collection":
97 (Var("github_mirror") % "collection") + Var("collection_rev"),
98
86 "wiki": (Var("github_url") % "dart-lang/fletch.wiki"), 99 "wiki": (Var("github_url") % "dart-lang/fletch.wiki"),
87 } 100 }
88 101
89 # To include Mac deps on other OSes, add this to your .gclient file: 102 # To include Mac deps on other OSes, add this to your .gclient file:
90 # 103 #
91 # target_os = [ "mac" ] 104 # target_os = [ "mac" ]
92 # 105 #
93 # To ignore the host OS, add this: 106 # To ignore the host OS, add this:
94 # 107 #
95 # target_os_only = True 108 # target_os_only = True
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 ], 206 ],
194 }, 207 },
195 { 208 {
196 'name': 'GYP', 209 'name': 'GYP',
197 'pattern': '.', 210 'pattern': '.',
198 'action': [ 211 'action': [
199 'ninja', '-C', 'fletch', 212 'ninja', '-C', 'fletch',
200 ], 213 ],
201 }, 214 },
202 ] 215 ]
OLDNEW
« no previous file with comments | « .packages ('k') | lib/async/async_patch.dart » ('j') | lib/core/core_patch.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698