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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 ] | 324 ] |
325 } | 325 } |
326 } | 326 } |
327 | 327 |
328 grit("content_shell_resources_grit") { | 328 grit("content_shell_resources_grit") { |
329 visibility = [ ":*" ] | 329 visibility = [ ":*" ] |
330 source = "shell_resources.grd" | 330 source = "shell_resources.grd" |
331 outputs = [ | 331 outputs = [ |
332 "grit/shell_resources.h", | 332 "grit/shell_resources.h", |
333 "shell_resources.pak", | 333 "shell_resources.pak", |
334 "shell_resources.rc", | |
335 ] | 334 ] |
336 } | 335 } |
337 | 336 |
338 copy("copy_shell_resources") { | 337 copy("copy_shell_resources") { |
339 sources = [ | 338 sources = [ |
340 "$target_gen_dir/shell_resources.pak", | 339 "$target_gen_dir/shell_resources.pak", |
341 ] | 340 ] |
342 outputs = [ | 341 outputs = [ |
343 "$root_out_dir/shell_resources.pak", | 342 "$root_out_dir/shell_resources.pak", |
344 ] | 343 ] |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 | 457 |
459 deps = [ | 458 deps = [ |
460 "//base", | 459 "//base", |
461 "//components/crash/tools:crash_service", | 460 "//components/crash/tools:crash_service", |
462 ] | 461 ] |
463 | 462 |
464 configs -= [ "//build/config/win:console" ] | 463 configs -= [ "//build/config/win:console" ] |
465 configs += [ "//build/config/win:windowed" ] | 464 configs += [ "//build/config/win:windowed" ] |
466 } | 465 } |
467 } | 466 } |
OLD | NEW |