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

Side by Side Diff: chrome/BUILD.gn

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: . Created 3 years, 7 months 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/compiler/pgo/pgo.gni") 7 import("//build/config/compiler/pgo/pgo.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 if (using_sanitizer) { 783 if (using_sanitizer) {
784 # crashpad_handler requires the ASan runtime at its @executable_path. 784 # crashpad_handler requires the ASan runtime at its @executable_path.
785 sources += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ] 785 sources += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ]
786 public_deps += [ "//build/config/sanitizers:copy_asan_runtime" ] 786 public_deps += [ "//build/config/sanitizers:copy_asan_runtime" ]
787 } 787 }
788 } 788 }
789 789
790 bundle_data("chrome_framework_resources") { 790 bundle_data("chrome_framework_resources") {
791 sources = [ 791 sources = [
792 "$root_out_dir/app_mode_loader.app", 792 "$root_out_dir/app_mode_loader.app",
793 "$root_out_dir/context_blob.bin",
Yuki 2017/04/28 13:48:27 I'd prefer a different name, such as blink_v8_cont
peria 2017/06/01 08:33:30 Done.
793 794
794 # This image is used to badge the lock icon in the 795 # This image is used to badge the lock icon in the
795 # authentication dialogs, such as those used for installation 796 # authentication dialogs, such as those used for installation
796 # from disk image and Keystone promotion (if so enabled). It 797 # from disk image and Keystone promotion (if so enabled). It
797 # needs to exist as a file on disk and not just something in a 798 # needs to exist as a file on disk and not just something in a
798 # resource bundle because that's the interface that 799 # resource bundle because that's the interface that
799 # Authorization Services uses. Also, Authorization Services 800 # Authorization Services uses. Also, Authorization Services
800 # can't deal with .icns files. 801 # can't deal with .icns files.
801 "app/theme/default_100_percent/$branding_path_component/product_logo_32.pn g", 802 "app/theme/default_100_percent/$branding_path_component/product_logo_32.pn g",
802 "browser/mac/install.sh", 803 "browser/mac/install.sh",
803 ] 804 ]
804 805
805 outputs = [ 806 outputs = [
806 "{{bundle_resources_dir}}/{{source_file_part}}", 807 "{{bundle_resources_dir}}/{{source_file_part}}",
807 ] 808 ]
808 809
809 public_deps = [ 810 public_deps = [
810 ":packed_resources", 811 ":packed_resources",
811 "//chrome/app_shim:app_mode_loader", 812 "//chrome/app_shim:app_mode_loader",
813 "//gin:run_gin_blink_snapshot",
812 ] 814 ]
813 815
814 if (is_chrome_branded) { 816 if (is_chrome_branded) {
815 sources += [ 817 sources += [
816 "browser/mac/keystone_promote_postflight.sh", 818 "browser/mac/keystone_promote_postflight.sh",
817 "browser/mac/keystone_promote_preflight.sh", 819 "browser/mac/keystone_promote_preflight.sh",
818 ] 820 ]
819 } 821 }
820 822
821 if (icu_use_data_file) { 823 if (icu_use_data_file) {
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
1760 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1762 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1761 "//chrome/tools/build/linux/chrome-wrapper", 1763 "//chrome/tools/build/linux/chrome-wrapper",
1762 "//third_party/xdg-utils/scripts/xdg-mime", 1764 "//third_party/xdg-utils/scripts/xdg-mime",
1763 "//third_party/xdg-utils/scripts/xdg-settings", 1765 "//third_party/xdg-utils/scripts/xdg-settings",
1764 ] 1766 ]
1765 outputs = [ 1767 outputs = [
1766 "$root_out_dir/{{source_file_part}}", 1768 "$root_out_dir/{{source_file_part}}",
1767 ] 1769 ]
1768 } 1770 }
1769 } 1771 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698