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

Side by Side Diff: build/common.gypi

Issue 10546163: Fix lint. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 | « 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'v8_use_liveobjectlist%': 'false', 88 'v8_use_liveobjectlist%': 'false',
89 'werror%': '-Werror', 89 'werror%': '-Werror',
90 90
91 # With post mortem support enabled, metadata is embedded into libv8 that 91 # With post mortem support enabled, metadata is embedded into libv8 that
92 # describes various parameters of the VM for use by debuggers. See 92 # describes various parameters of the VM for use by debuggers. See
93 # tools/gen-postmortem-metadata.py for details. 93 # tools/gen-postmortem-metadata.py for details.
94 'v8_postmortem_support%': 'false', 94 'v8_postmortem_support%': 'false',
95 95
96 # For a shared library build, results in "libv8-<(soname_version).so". 96 # For a shared library build, results in "libv8-<(soname_version).so".
97 'soname_version%': '', 97 'soname_version%': '',
98 98
99 # Interpreted regexp engine exists as platform-independent alternative 99 # Interpreted regexp engine exists as platform-independent alternative
100 # based where the regular expression is compiled to a bytecode. 100 # based where the regular expression is compiled to a bytecode.
101 'v8_interpreted_regexp%': 0, 101 'v8_interpreted_regexp%': 0,
102 }, 102 },
103 'target_defaults': { 103 'target_defaults': {
104 'conditions': [ 104 'conditions': [
105 ['v8_enable_debugger_support==1', { 105 ['v8_enable_debugger_support==1', {
106 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 106 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
107 }], 107 }],
108 ['v8_enable_disassembler==1', { 108 ['v8_enable_disassembler==1', {
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'OptimizeReferences': '2', 393 'OptimizeReferences': '2',
394 'EnableCOMDATFolding': '2', 394 'EnableCOMDATFolding': '2',
395 }, 395 },
396 }, 396 },
397 }], # OS=="win" 397 }], # OS=="win"
398 ], # conditions 398 ], # conditions
399 }, # Release 399 }, # Release
400 }, # configurations 400 }, # configurations
401 }, # target_defaults 401 }, # target_defaults
402 } 402 }
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