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

Side by Side Diff: build/common.gypi

Issue 7848017: Add "soname_version" parameter to common.gypi, v8.gyp, Makefile (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 3 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 | « Makefile ('k') | tools/gyp/v8.gyp » ('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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 # Enable profiling support. Only required on Windows. 65 # Enable profiling support. Only required on Windows.
66 'v8_enable_prof%': 0, 66 'v8_enable_prof%': 0,
67 67
68 # Chrome needs this definition unconditionally. For standalone V8 builds, 68 # Chrome needs this definition unconditionally. For standalone V8 builds,
69 # it's handled in build/standalone.gypi. 69 # it's handled in build/standalone.gypi.
70 'want_separate_host_toolset%': 1, 70 'want_separate_host_toolset%': 1,
71 71
72 'v8_use_snapshot%': 'true', 72 'v8_use_snapshot%': 'true',
73 'host_os%': '<(OS)', 73 'host_os%': '<(OS)',
74 'v8_use_liveobjectlist%': 'false', 74 'v8_use_liveobjectlist%': 'false',
75
76 # For a shared library build, results in "libv8-<(soname_version).so".
77 'soname_version%': '',
75 }, 78 },
76 'target_defaults': { 79 'target_defaults': {
77 'conditions': [ 80 'conditions': [
78 ['v8_enable_debugger_support==1', { 81 ['v8_enable_debugger_support==1', {
79 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 82 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
80 }], 83 }],
81 ['v8_enable_disassembler==1', { 84 ['v8_enable_disassembler==1', {
82 'defines': ['ENABLE_DISASSEMBLER',], 85 'defines': ['ENABLE_DISASSEMBLER',],
83 }], 86 }],
84 ['v8_enable_gdbjit==1', { 87 ['v8_enable_gdbjit==1', {
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 # some test cases can cause stack overflow. 292 # some test cases can cause stack overflow.
290 # 'StackReserveSize': '297152', 293 # 'StackReserveSize': '297152',
291 }, 294 },
292 }, 295 },
293 }], 296 }],
294 ], 297 ],
295 }, 298 },
296 }, 299 },
297 }, 300 },
298 } 301 }
OLDNEW
« no previous file with comments | « Makefile ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698