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/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
391 | 391 |
392 public_deps = [ | 392 public_deps = [ |
393 ":content_shell_resources_grit", | 393 ":content_shell_resources_grit", |
394 ] | 394 ] |
395 } | 395 } |
396 | 396 |
397 group("resources") { | 397 group("resources") { |
398 public_deps = [ | 398 public_deps = [ |
399 ":copy_shell_resources", | 399 ":copy_shell_resources", |
400 ] | 400 ] |
401 deps = [ | 401 data_deps = [ |
402 "//components/test_runner:resources", | 402 "//components/test_runner:resources", |
403 ] | 403 ] |
404 } | 404 } |
405 | 405 |
406 repack("pak") { | 406 repack("pak") { |
407 sources = [ | 407 sources = [ |
408 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" , | 408 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" , |
409 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 409 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
410 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | 410 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", |
411 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 411 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
494 ] | 494 ] |
495 | 495 |
496 if (is_win) { | 496 if (is_win) { |
497 sources += [ "app/shell.rc" ] | 497 sources += [ "app/shell.rc" ] |
498 } | 498 } |
499 | 499 |
500 defines = [] | 500 defines = [] |
501 | 501 |
502 deps = [ | 502 deps = [ |
503 ":content_shell_lib", | 503 ":content_shell_lib", |
504 ":pak", | |
505 "//build/config/sanitizers:deps", | 504 "//build/config/sanitizers:deps", |
506 "//build/win:default_exe_manifest", | 505 "//build/win:default_exe_manifest", |
507 ] | 506 ] |
508 | 507 |
508 data_deps = [ | |
Dirk Pranke
2016/10/28 00:25:56
Are you sure this isn't also needed as a regular d
mithro
2016/10/31 01:46:47
Does anything need the :pak at compile / linking t
| |
509 ":pak", | |
510 ] | |
511 | |
509 if (is_win) { | 512 if (is_win) { |
510 deps += [ "//sandbox" ] | 513 deps += [ "//sandbox" ] |
511 | 514 |
512 # This is a large module that can't do incremental linking in some cases. | 515 # This is a large module that can't do incremental linking in some cases. |
513 configs -= [ "//build/config/win:default_incremental_linking" ] | 516 configs -= [ "//build/config/win:default_incremental_linking" ] |
514 configs += | 517 configs += |
515 [ "//build/config/win:default_large_module_incremental_linking" ] | 518 [ "//build/config/win:default_large_module_incremental_linking" ] |
516 if (win_console_app) { | 519 if (win_console_app) { |
517 defines += [ "WIN_CONSOLE_APP" ] | 520 defines += [ "WIN_CONSOLE_APP" ] |
518 } else { | 521 } else { |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
739 "{{bundle_resources_dir}}/{{source_file_part}}", | 742 "{{bundle_resources_dir}}/{{source_file_part}}", |
740 ] | 743 ] |
741 } | 744 } |
742 } | 745 } |
743 | 746 |
744 mojom("mojo_bindings") { | 747 mojom("mojo_bindings") { |
745 sources = [ | 748 sources = [ |
746 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 749 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
747 ] | 750 ] |
748 } | 751 } |
OLD | NEW |