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

Side by Side Diff: tools/gyp/v8.gyp

Issue 7066048: Compress sources of JS libraries in addition to the snapshot. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Make decompressor class public Created 9 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/serialize.cc ('k') | tools/js2c.py » ('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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 12 matching lines...) Expand all
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 { 28 {
29 'variables': { 29 'variables': {
30 'use_system_v8%': 0, 30 'use_system_v8%': 0,
31 'msvs_use_common_release': 0, 31 'msvs_use_common_release': 0,
32 'gcc_version%': 'unknown', 32 'gcc_version%': 'unknown',
33 'v8_compress_startup_data%': 'false', 33 'v8_compress_startup_data%': 'off',
34 'v8_target_arch%': '<(target_arch)', 34 'v8_target_arch%': '<(target_arch)',
35 35
36 # Setting 'v8_can_use_unaligned_accesses' to 'true' will allow the code 36 # Setting 'v8_can_use_unaligned_accesses' to 'true' will allow the code
37 # generated by V8 to do unaligned memory access, and setting it to 'false' 37 # generated by V8 to do unaligned memory access, and setting it to 'false'
38 # will ensure that the generated code will always do aligned memory 38 # will ensure that the generated code will always do aligned memory
39 # accesses. The default value of 'default' will try to determine the correct 39 # accesses. The default value of 'default' will try to determine the correct
40 # setting. Note that for Intel architectures (ia32 and x64) unaligned memory 40 # setting. Note that for Intel architectures (ia32 and x64) unaligned memory
41 # access is allowed for all CPUs. 41 # access is allowed for all CPUs.
42 'v8_can_use_unaligned_accesses%': 'default', 42 'v8_can_use_unaligned_accesses%': 'default',
43 43
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 '<@(library_files)', 895 '<@(library_files)',
896 ], 896 ],
897 'outputs': [ 897 'outputs': [
898 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 898 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
899 ], 899 ],
900 'action': [ 900 'action': [
901 'python', 901 'python',
902 '../../tools/js2c.py', 902 '../../tools/js2c.py',
903 '<@(_outputs)', 903 '<@(_outputs)',
904 'CORE', 904 'CORE',
905 '<(v8_compress_startup_data)',
905 '<@(library_files)' 906 '<@(library_files)'
906 ], 907 ],
907 }, 908 },
908 { 909 {
909 'action_name': 'js2c_experimental', 910 'action_name': 'js2c_experimental',
910 'inputs': [ 911 'inputs': [
911 '../../tools/js2c.py', 912 '../../tools/js2c.py',
912 '<@(experimental_library_files)', 913 '<@(experimental_library_files)',
913 ], 914 ],
914 'outputs': [ 915 'outputs': [
915 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 916 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
916 ], 917 ],
917 'action': [ 918 'action': [
918 'python', 919 'python',
919 '../../tools/js2c.py', 920 '../../tools/js2c.py',
920 '<@(_outputs)', 921 '<@(_outputs)',
921 'EXPERIMENTAL', 922 'EXPERIMENTAL',
923 '<(v8_compress_startup_data)',
922 '<@(experimental_library_files)' 924 '<@(experimental_library_files)'
923 ], 925 ],
924 }, 926 },
925 ], 927 ],
926 }, 928 },
927 { 929 {
928 'target_name': 'mksnapshot', 930 'target_name': 'mksnapshot',
929 'type': 'executable', 931 'type': 'executable',
930 'toolsets': ['host'], 932 'toolsets': ['host'],
931 'dependencies': [ 933 'dependencies': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 'target_name': 'v8_shell', 988 'target_name': 'v8_shell',
987 'type': 'none', 989 'type': 'none',
988 'dependencies': [ 990 'dependencies': [
989 'v8' 991 'v8'
990 ], 992 ],
991 }, 993 },
992 ], 994 ],
993 }], 995 }],
994 ], 996 ],
995 } 997 }
OLDNEW
« no previous file with comments | « src/serialize.cc ('k') | tools/js2c.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698