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

Side by Side Diff: mojo/public/dart/third_party/BUILD.gn

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("../rules.gni")
6
7 group("third_party") {
8 deps = [
9 ":analyzer",
10 ":args",
11 ":async",
12 ":barback",
13 ":charcode",
14 ":collection",
15 ":crypto",
16 ":csslib",
17 ":glob",
18 ":html",
19 ":http_multi_server",
20 ":http_parser",
21 ":logging",
22 ":matcher",
23 ":mime",
24 ":package_config",
25 ":path",
26 ":plugin",
27 ":pool",
28 ":pub_semver",
29 ":shelf",
30 ":shelf_static",
31 ":shelf_web_socket",
32 ":source_maps",
33 ":source_map_stack_trace",
34 ":source_span",
35 ":stack_trace",
36 ":string_scanner",
37 ":test",
38 ":unittest",
39 ":utf",
40 ":watcher",
41 ":yaml",
42 ]
43 }
44
45 dart_pkg("analyzer") {
46 pkg_dir = "analyzer"
47 }
48
49 dart_pkg("args") {
50 pkg_dir = "args"
51 }
52
53 dart_pkg("async") {
54 pkg_dir = "async"
55 }
56
57 dart_pkg("barback") {
58 pkg_dir = "barback"
59 }
60
61 dart_pkg("charcode") {
62 pkg_dir = "charcode"
63 }
64
65 dart_pkg("collection") {
66 pkg_dir = "collection"
67 }
68
69 dart_pkg("crypto") {
70 pkg_dir = "crypto"
71 }
72
73 dart_pkg("csslib") {
74 pkg_dir = "csslib"
75 }
76
77 dart_pkg("glob") {
78 pkg_dir = "glob"
79 }
80
81 dart_pkg("html") {
82 pkg_dir = "html"
83 }
84
85 dart_pkg("http_multi_server") {
86 pkg_dir = "http_multi_server"
87 }
88
89 dart_pkg("http_parser") {
90 pkg_dir = "http_parser"
91 }
92
93 dart_pkg("logging") {
94 pkg_dir = "logging"
95 }
96
97 dart_pkg("matcher") {
98 pkg_dir = "matcher"
99 }
100
101 dart_pkg("mime") {
102 pkg_dir = "mime"
103 }
104
105 dart_pkg("package_config") {
106 pkg_dir = "package_config"
107 }
108
109 dart_pkg("path") {
110 pkg_dir = "path"
111 }
112
113 dart_pkg("plugin") {
114 pkg_dir = "plugin"
115 }
116
117 dart_pkg("pool") {
118 pkg_dir = "pool"
119 }
120
121 dart_pkg("pub_semver") {
122 pkg_dir = "pub_semver"
123 }
124
125 dart_pkg("shelf") {
126 pkg_dir = "shelf"
127 }
128
129 dart_pkg("shelf_static") {
130 pkg_dir = "shelf_static"
131 }
132
133 dart_pkg("shelf_web_socket") {
134 pkg_dir = "shelf_web_socket"
135 }
136
137 dart_pkg("source_maps") {
138 pkg_dir = "source_maps"
139 }
140
141 dart_pkg("source_map_stack_trace") {
142 pkg_dir = "source_map_stack_trace"
143 }
144
145 dart_pkg("source_span") {
146 pkg_dir = "source_span"
147 }
148
149 dart_pkg("stack_trace") {
150 pkg_dir = "stack_trace"
151 }
152
153 dart_pkg("string_scanner") {
154 pkg_dir = "string_scanner"
155 }
156
157 dart_pkg("test") {
158 pkg_dir = "test"
159 }
160
161 dart_pkg("unittest") {
162 pkg_dir = "unittest"
163 }
164
165 dart_pkg("utf") {
166 pkg_dir = "utf"
167 }
168
169 dart_pkg("watcher") {
170 pkg_dir = "watcher"
171 }
172
173 dart_pkg("yaml") {
174 pkg_dir = "yaml"
175 }
OLDNEW
« no previous file with comments | « mojo/public/dart/third_party/.gitignore ('k') | mojo/public/dart/third_party/analyzer/CHANGELOG.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698