OLD | NEW |
---|---|
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 Loading... | |
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', | |
Sigurður Ásgeirsson
2011/12/21 14:16:06
This is a little indiscriminate, I'd very much pre
| |
87 }, | 91 }, |
88 'target_defaults': { | 92 'target_defaults': { |
89 'conditions': [ | 93 'conditions': [ |
90 ['v8_enable_debugger_support==1', { | 94 ['v8_enable_debugger_support==1', { |
91 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 95 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
92 }], | 96 }], |
93 ['v8_enable_disassembler==1', { | 97 ['v8_enable_disassembler==1', { |
94 'defines': ['ENABLE_DISASSEMBLER',], | 98 'defines': ['ENABLE_DISASSEMBLER',], |
95 }], | 99 }], |
96 ['v8_object_print==1', { | 100 ['v8_object_print==1', { |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
334 # some test cases can cause stack overflow. | 338 # some test cases can cause stack overflow. |
335 # 'StackReserveSize': '297152', | 339 # 'StackReserveSize': '297152', |
336 }, | 340 }, |
337 }, | 341 }, |
338 }], | 342 }], |
339 ], | 343 ], |
340 }, | 344 }, |
341 }, | 345 }, |
342 }, | 346 }, |
343 } | 347 } |
OLD | NEW |