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

Side by Side Diff: build/common.gypi

Issue 9020004: Fix presubmit. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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 | no next file » | 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 87
88 # We want max optimization for the V8 build (if this is not set, chrome 88 # We want max optimization for the V8 build (if this is not set, chrome
89 # defaults to low optimization settings) 89 # defaults to low optimization settings)
90 'optimize': 'max', 90 'optimize': 'max',
91 }, 91 },
92 'target_defaults': { 92 'target_defaults': {
93 'conditions': [ 93 'conditions': [
94 ['v8_enable_debugger_support==1', { 94 ['v8_enable_debugger_support==1', {
95 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 95 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
96 }], 96 }],
97 ['v8_enable_disassembler==1', { 97 ['v8_enable_disassembler==1', {
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 # some test cases can cause stack overflow. 338 # some test cases can cause stack overflow.
339 # 'StackReserveSize': '297152', 339 # 'StackReserveSize': '297152',
340 }, 340 },
341 }, 341 },
342 }], 342 }],
343 ], 343 ],
344 }, 344 },
345 }, 345 },
346 }, 346 },
347 } 347 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698