| 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") |
| 11 import("//mojo/public/tools/bindings/mojom.gni") | 11 import("//mojo/public/tools/bindings/mojom.gni") |
| 12 import("//ppapi/features/features.gni") | 12 import("//ppapi/features/features.gni") |
| 13 import("//tools/grit/repack.gni") | 13 import("//tools/grit/repack.gni") |
| 14 import("//tools/grit/grit_rule.gni") | 14 import("//tools/grit/grit_rule.gni") |
| 15 if (is_android) { | 15 if (is_android) { |
| 16 import("//build/config/android/config.gni") | 16 import("//build/config/android/config.gni") |
| 17 } else if (is_mac) { | 17 } else if (is_mac) { |
| 18 import("//build/config/mac/rules.gni") | 18 import("//build/config/mac/rules.gni") |
| 19 import("//build/mac/tweak_info_plist.gni") | 19 import("//build/mac/tweak_info_plist.gni") |
| 20 import("//third_party/icu/config.gni") | 20 import("//third_party/icu/config.gni") |
| 21 import("//v8/gni/v8.gni") | 21 import("//v8/gni/v8.gni") |
| 22 import("//v8/snapshot_toolchain.gni") |
| 22 } else if (is_win) { | 23 } else if (is_win) { |
| 23 import("//build/win/syzygy/syzygy.gni") | 24 import("//build/win/syzygy/syzygy.gni") |
| 24 } | 25 } |
| 25 | 26 |
| 26 declare_args() { | 27 declare_args() { |
| 27 content_shell_product_name = "Content Shell" | 28 content_shell_product_name = "Content Shell" |
| 28 content_shell_version = "99.77.34.5" | 29 content_shell_version = "99.77.34.5" |
| 29 } | 30 } |
| 30 | 31 |
| 31 config("content_shell_lib_warnings") { | 32 config("content_shell_lib_warnings") { |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 sources = [ | 587 sources = [ |
| 587 "app/English.lproj/HttpAuth.xib", | 588 "app/English.lproj/HttpAuth.xib", |
| 588 "app/English.lproj/MainMenu.xib", | 589 "app/English.lproj/MainMenu.xib", |
| 589 ] | 590 ] |
| 590 output_path = "{{bundle_resources_dir}}/English.lproj" | 591 output_path = "{{bundle_resources_dir}}/English.lproj" |
| 591 } | 592 } |
| 592 | 593 |
| 593 bundle_data("content_shell_framework_resources") { | 594 bundle_data("content_shell_framework_resources") { |
| 594 sources = [ | 595 sources = [ |
| 595 "$root_out_dir/content_shell.pak", | 596 "$root_out_dir/content_shell.pak", |
| 597 "$root_out_dir/context_blob.bin", |
| 596 "resources/missingImage.png", | 598 "resources/missingImage.png", |
| 597 ] | 599 ] |
| 598 | 600 |
| 599 public_deps = [ | 601 public_deps = [ |
| 600 ":pak", | 602 ":pak", |
| 603 "//gin:run_gin_blink_snapshot($v8_snapshot_toolchain)", |
| 601 ] | 604 ] |
| 602 | 605 |
| 603 if (icu_use_data_file) { | 606 if (icu_use_data_file) { |
| 604 sources += [ "$root_out_dir/icudtl.dat" ] | 607 sources += [ "$root_out_dir/icudtl.dat" ] |
| 605 deps = [ | 608 deps = [ |
| 606 "//third_party/icu:icudata", | 609 "//third_party/icu:icudata", |
| 607 ] | 610 ] |
| 608 } | 611 } |
| 609 | 612 |
| 610 if (v8_use_external_startup_data) { | 613 if (v8_use_external_startup_data) { |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 data_deps += [ | 812 data_deps += [ |
| 810 "//breakpad:dump_syms", | 813 "//breakpad:dump_syms", |
| 811 "//breakpad:microdump_stackwalk", | 814 "//breakpad:microdump_stackwalk", |
| 812 "//breakpad:minidump_dump", | 815 "//breakpad:minidump_dump", |
| 813 "//breakpad:minidump_stackwalk", | 816 "//breakpad:minidump_stackwalk", |
| 814 "//breakpad:symupload", | 817 "//breakpad:symupload", |
| 815 "//tools/android/forwarder2", | 818 "//tools/android/forwarder2", |
| 816 ] | 819 ] |
| 817 } | 820 } |
| 818 } | 821 } |
| OLD | NEW |