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

Side by Side Diff: content/shell/BUILD.gn

Issue 2460503002: content_shell: Add runtime resources into data_deps. (Closed)
Patch Set: Moving the removal to another CL. Created 4 years, 1 month 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
« no previous file with comments | « components/test_runner/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 deps = [
402 "//components/test_runner:resources", 402 "//components/test_runner:resources",
403 ] 403 ]
404 data_deps = [
405 "//components/test_runner:resources",
406 ]
404 } 407 }
405 408
406 repack("pak") { 409 repack("pak") {
407 sources = [ 410 sources = [
408 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" , 411 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" ,
409 "$root_gen_dir/blink/public/resources/blink_resources.pak", 412 "$root_gen_dir/blink/public/resources/blink_resources.pak",
410 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", 413 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak",
411 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", 414 "$root_gen_dir/content/app/strings/content_strings_en-US.pak",
412 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", 415 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
413 "$root_gen_dir/content/content_resources.pak", 416 "$root_gen_dir/content/content_resources.pak",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 502
500 defines = [] 503 defines = []
501 504
502 deps = [ 505 deps = [
503 ":content_shell_lib", 506 ":content_shell_lib",
504 ":pak", 507 ":pak",
505 "//build/config/sanitizers:deps", 508 "//build/config/sanitizers:deps",
506 "//build/win:default_exe_manifest", 509 "//build/win:default_exe_manifest",
507 ] 510 ]
508 511
512 data_deps = [
513 ":pak",
514 ]
515
509 if (is_win) { 516 if (is_win) {
510 deps += [ "//sandbox" ] 517 deps += [ "//sandbox" ]
511 518
512 # This is a large module that can't do incremental linking in some cases. 519 # This is a large module that can't do incremental linking in some cases.
513 configs -= [ "//build/config/win:default_incremental_linking" ] 520 configs -= [ "//build/config/win:default_incremental_linking" ]
514 configs += 521 configs +=
515 [ "//build/config/win:default_large_module_incremental_linking" ] 522 [ "//build/config/win:default_large_module_incremental_linking" ]
516 if (win_console_app) { 523 if (win_console_app) {
517 defines += [ "WIN_CONSOLE_APP" ] 524 defines += [ "WIN_CONSOLE_APP" ]
518 } else { 525 } else {
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 "{{bundle_resources_dir}}/{{source_file_part}}", 746 "{{bundle_resources_dir}}/{{source_file_part}}",
740 ] 747 ]
741 } 748 }
742 } 749 }
743 750
744 mojom("mojo_bindings") { 751 mojom("mojo_bindings") {
745 sources = [ 752 sources = [
746 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 753 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
747 ] 754 ]
748 } 755 }
OLDNEW
« no previous file with comments | « components/test_runner/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698