From bfac5a1c4690c4972e7971f2000a6f730260c254 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 2 Mar 2015 17:06:34 +0000 Subject: [PATCH] Windows: Add natives_blob.bin and snapshot_blob.bin to binary distribution (issue #1554). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2036 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tools/make_distrib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/make_distrib.py b/tools/make_distrib.py index c4228d489..236038cc5 100644 --- a/tools/make_distrib.py +++ b/tools/make_distrib.py @@ -508,6 +508,8 @@ if platform == 'windows': copy_file(os.path.join(build_dir, 'cef_200_percent.pak'), dst_dir, options.quiet) copy_file(os.path.join(build_dir, 'devtools_resources.pak'), dst_dir, options.quiet) copy_file(os.path.join(build_dir, 'icudtl.dat'), dst_dir, options.quiet) + copy_file(os.path.join(build_dir, 'natives_blob.bin'), dst_dir, options.quiet) + copy_file(os.path.join(build_dir, 'snapshot_blob.bin'), dst_dir, options.quiet) copy_dir(os.path.join(build_dir, 'locales'), os.path.join(dst_dir, 'locales'), options.quiet) if mode == 'standard':