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

Side by Side Diff: build/common.gypi

Issue 9023003: Merge revision 10297 to trunk: Enable max optimization for v8 in chromium. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years 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 | « no previous file | src/version.cc » ('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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 # it's handled in build/standalone.gypi. 77 # it's handled in build/standalone.gypi.
78 'want_separate_host_toolset%': 1, 78 'want_separate_host_toolset%': 1,
79 79
80 'v8_use_snapshot%': 'true', 80 'v8_use_snapshot%': 'true',
81 'host_os%': '<(OS)', 81 'host_os%': '<(OS)',
82 'v8_use_liveobjectlist%': 'false', 82 'v8_use_liveobjectlist%': 'false',
83 'werror%': '-Werror', 83 'werror%': '-Werror',
84 84
85 # For a shared library build, results in "libv8-<(soname_version).so". 85 # For a shared library build, results in "libv8-<(soname_version).so".
86 'soname_version%': '', 86 'soname_version%': '',
87
88 # We want max optimization for the V8 build (if this is not set, chrome
89 # defaults to low optimization settings)
90 'optimize': 'max',
91 }, 87 },
92 'target_defaults': { 88 'target_defaults': {
93 'conditions': [ 89 'conditions': [
94 ['v8_enable_debugger_support==1', { 90 ['v8_enable_debugger_support==1', {
95 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 91 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
96 }], 92 }],
97 ['v8_enable_disassembler==1', { 93 ['v8_enable_disassembler==1', {
98 'defines': ['ENABLE_DISASSEMBLER',], 94 'defines': ['ENABLE_DISASSEMBLER',],
99 }], 95 }],
100 ['v8_object_print==1', { 96 ['v8_object_print==1', {
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 # some test cases can cause stack overflow. 334 # some test cases can cause stack overflow.
339 # 'StackReserveSize': '297152', 335 # 'StackReserveSize': '297152',
340 }, 336 },
341 }, 337 },
342 }], 338 }],
343 ], 339 ],
344 }, 340 },
345 }, 341 },
346 }, 342 },
347 } 343 }
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698