OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 "chromium_strings_te.pak", | 259 "chromium_strings_te.pak", |
260 "chromium_strings_th.pak", | 260 "chromium_strings_th.pak", |
261 "chromium_strings_tr.pak", | 261 "chromium_strings_tr.pak", |
262 "chromium_strings_uk.pak", | 262 "chromium_strings_uk.pak", |
263 "chromium_strings_vi.pak", | 263 "chromium_strings_vi.pak", |
264 "chromium_strings_zh-CN.pak", | 264 "chromium_strings_zh-CN.pak", |
265 "chromium_strings_zh-TW.pak", | 265 "chromium_strings_zh-TW.pak", |
266 ] | 266 ] |
267 } | 267 } |
268 | 268 |
269 # GYP version: chrome/settings_strings.gyp:settings_strings | |
270 # (generate_settings_strings action) | |
271 grit("settings_strings") { | |
272 source = "settings_strings.grd" | |
273 output_dir = "$root_gen_dir/chrome" | |
274 use_qualified_include = true | |
275 outputs = [ | |
276 "grit/settings_strings.h", | |
277 | |
278 # The settings strings are not being treated as strings because they are | |
279 # not translated (English only), this should change in late 2015. | |
280 "settings_strings.pak", | |
281 ] | |
282 } | |
283 | |
284 # GYP version: chrome/settings_chromium_strings.gyp:settings_chromium_strings | |
285 # (generate_settings_chromium_strings action) | |
286 grit("settings_chromium_strings") { | |
287 source = "settings_chromium_strings.grd" | |
288 output_dir = "$root_gen_dir/chrome" | |
289 use_qualified_include = true | |
290 outputs = [ | |
291 "grit/settings_chromium_strings.h", | |
292 | |
293 # These strings are not being treated as strings because they are | |
294 # not translated (English only), this should change in late 2015. | |
295 "settings_chromium_strings.pak", | |
296 ] | |
297 } | |
298 | |
299 # GYP version: | |
300 # chrome/settings_google_chrome_strings.gyp:settings_google_chrome_strings | |
301 # (generate_settings_google_chrome_strings action) | |
302 grit("settings_google_chrome_strings") { | |
303 source = "settings_google_chrome_strings.grd" | |
304 output_dir = "$root_gen_dir/chrome" | |
305 use_qualified_include = true | |
306 outputs = [ | |
307 "grit/settings_google_chrome_strings.h", | |
308 | |
309 # These strings are not being treated as strings because they are | |
310 # not translated (English only), this should change in late 2015. | |
311 "settings_google_chrome_strings.pak", | |
312 ] | |
313 } | |
314 | |
315 static_library("test_support") { | 269 static_library("test_support") { |
316 testonly = true | 270 testonly = true |
317 visibility = [ "//chrome/test:test_support" ] | 271 visibility = [ "//chrome/test:test_support" ] |
318 | 272 |
319 sources = [ | 273 sources = [ |
320 "chrome_main_delegate.cc", | 274 "chrome_main_delegate.cc", |
321 "chrome_main_delegate.h", | 275 "chrome_main_delegate.h", |
322 ] | 276 ] |
323 | 277 |
324 deps = [ | 278 deps = [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 base_deps = [ "//content/public/app:renderer_manifest" ] | 341 base_deps = [ "//content/public/app:renderer_manifest" ] |
388 } | 342 } |
389 | 343 |
390 group("mojo_manifests") { | 344 group("mojo_manifests") { |
391 data_deps = [ | 345 data_deps = [ |
392 ":chrome_manifest", | 346 ":chrome_manifest", |
393 ":chrome_renderer_manifest", | 347 ":chrome_renderer_manifest", |
394 ] | 348 ] |
395 } | 349 } |
396 } | 350 } |
OLD | NEW |