OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//crypto/ssl/flags.gni") | 5 import("//crypto/ssl/flags.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 executable("chrome") { | 8 executable("chrome") { |
9 sources = [ | 9 sources = [ |
10 "app/breakpad_field_trial_win.cc", | 10 "app/breakpad_field_trial_win.cc", |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 static_library("renderer") { | 166 static_library("renderer") { |
167 external = true | 167 external = true |
168 } | 168 } |
169 | 169 |
170 static_library("utility") { | 170 static_library("utility") { |
171 external = true | 171 external = true |
172 } | 172 } |
173 | 173 |
174 # Resources -------------------------------------------------------------------- | 174 # Resources -------------------------------------------------------------------- |
175 | 175 |
176 print("resourcing") | |
177 | |
178 group("chrome_resources") { | 176 group("chrome_resources") { |
179 deps = [ | 177 deps = [ |
180 ":browser_resources", | 178 ":browser_resources", |
181 ":common_resources", | 179 ":common_resources", |
182 ":renderer_resources", | 180 ":renderer_resources", |
183 ] | 181 ] |
184 } | 182 } |
185 grit("browser_resources") { | 183 grit("browser_resources") { |
186 external = true | 184 external = true |
187 source = "browser/browser_resources.grd" | 185 source = "browser/browser_resources.grd" |
188 } | 186 } |
189 grit("common_resources") { | 187 grit("common_resources") { |
190 external = true | 188 external = true |
191 source = "common/common_resources.grd" | 189 source = "common/common_resources.grd" |
192 } | 190 } |
193 grit("renderer_resources") { | 191 grit("renderer_resources") { |
194 external = true | 192 external = true |
195 source = "renderer/resources/renderer_resources.grd" | 193 source = "renderer/resources/renderer_resources.grd" |
196 } | 194 } |
197 print("resourcing 2") | |
198 | 195 |
199 group("chrome_strings") { | 196 group("chrome_strings") { |
200 deps = [ | 197 deps = [ |
201 ":locale_settings", | 198 ":locale_settings", |
202 ":chromium_strings", | 199 ":chromium_strings", |
203 ":generated_resources", | 200 ":generated_resources", |
204 ":google_chrome_strings", | 201 ":google_chrome_strings", |
205 ] | 202 ] |
206 } | 203 } |
207 grit("locale_settings") { | 204 grit("locale_settings") { |
208 external = true | 205 external = true |
209 source = "app/resources/locale_settings.grd" | 206 source = "app/resources/locale_settings.grd" |
210 } | 207 } |
211 grit("chromium_strings") { | 208 grit("chromium_strings") { |
212 external = true | 209 external = true |
213 source = "app/chromium_strings.grd" | 210 source = "app/chromium_strings.grd" |
214 } | 211 } |
215 grit("generated_resources") { | 212 grit("generated_resources") { |
216 external = true | 213 external = true |
217 source = "app/generated_resources.grd" | 214 source = "app/generated_resources.grd" |
218 } | 215 } |
219 grit("google_chrome_strings") { | 216 grit("google_chrome_strings") { |
220 external = true | 217 external = true |
221 source = "app/google_chrome_strings.grd" | 218 source = "app/google_chrome_strings.grd" |
222 } | 219 } |
223 print("resourcing 3") | |
224 | 220 |
225 group("chrome_extra_resources") { | 221 group("chrome_extra_resources") { |
226 deps = [ | 222 deps = [ |
227 ":memory_internals_resources", | 223 ":memory_internals_resources", |
228 ":net_internals_resources", | 224 ":net_internals_resources", |
229 ":signin_internals_resources", | 225 ":signin_internals_resources", |
230 ":sync_internals_resources", | 226 ":sync_internals_resources", |
231 ":translate_internals_resources", | 227 ":translate_internals_resources", |
232 ] | 228 ] |
233 } | 229 } |
(...skipping 10 matching lines...) Expand all Loading... |
244 source = "browser/resources/signin_internals_resources.grd" | 240 source = "browser/resources/signin_internals_resources.grd" |
245 } | 241 } |
246 grit("sync_internals_resources") { | 242 grit("sync_internals_resources") { |
247 external = true | 243 external = true |
248 source = "browser/resources/sync_internals_resources.grd" | 244 source = "browser/resources/sync_internals_resources.grd" |
249 } | 245 } |
250 grit("translate_internals_resources") { | 246 grit("translate_internals_resources") { |
251 external = true | 247 external = true |
252 source = "browser/resources/translate_internals_resources.grd" | 248 source = "browser/resources/translate_internals_resources.grd" |
253 } | 249 } |
254 print("resourcing 4") | |
255 | 250 |
256 group("theme_resources") { | 251 group("theme_resources") { |
257 deps = [ | 252 deps = [ |
258 ":app_theme_resources", | 253 ":app_theme_resources", |
259 #"//ui:ui_resources", | 254 #"//ui:ui_resources", |
260 ] | 255 ] |
261 } | 256 } |
262 grit("app_theme_resources") { | 257 grit("app_theme_resources") { |
263 external = true | 258 external = true |
264 source = "app/theme/theme_resources.grd" | 259 source = "app/theme/theme_resources.grd" |
265 } | 260 } |
266 | |
267 print("resourcing done") | |
OLD | NEW |