| 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 = [ |
| 402 "//components/test_runner:resources", |
| 403 ] |
| 401 data_deps = [ | 404 data_deps = [ |
| 402 "//components/test_runner:resources", | 405 "//components/test_runner:resources", |
| 403 ] | 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", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 ] | 497 ] |
| 495 | 498 |
| 496 if (is_win) { | 499 if (is_win) { |
| 497 sources += [ "app/shell.rc" ] | 500 sources += [ "app/shell.rc" ] |
| 498 } | 501 } |
| 499 | 502 |
| 500 defines = [] | 503 defines = [] |
| 501 | 504 |
| 502 deps = [ | 505 deps = [ |
| 503 ":content_shell_lib", | 506 ":content_shell_lib", |
| 507 ":pak", |
| 504 "//build/config/sanitizers:deps", | 508 "//build/config/sanitizers:deps", |
| 505 "//build/win:default_exe_manifest", | 509 "//build/win:default_exe_manifest", |
| 506 ] | 510 ] |
| 507 | 511 |
| 508 data_deps = [ | 512 data_deps = [ |
| 509 ":pak", | 513 ":pak", |
| 510 ] | 514 ] |
| 511 | 515 |
| 512 if (is_win) { | 516 if (is_win) { |
| 513 deps += [ "//sandbox" ] | 517 deps += [ "//sandbox" ] |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 "{{bundle_resources_dir}}/{{source_file_part}}", | 746 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 743 ] | 747 ] |
| 744 } | 748 } |
| 745 } | 749 } |
| 746 | 750 |
| 747 mojom("mojo_bindings") { | 751 mojom("mojo_bindings") { |
| 748 sources = [ | 752 sources = [ |
| 749 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 753 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 750 ] | 754 ] |
| 751 } | 755 } |
| OLD | NEW |