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

Side by Side Diff: tools/gyp/v8.gyp

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 | « build/common.gypi ('k') | 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 }, { 64 }, {
65 'defines': [ 65 'defines': [
66 'V8_SHARED', 66 'V8_SHARED',
67 ], 67 ],
68 'direct_dependent_settings': { 68 'direct_dependent_settings': {
69 'defines': [ 69 'defines': [
70 'V8_SHARED', 70 'V8_SHARED',
71 ], 71 ],
72 }, 72 },
73 }], 73 }],
74 ['soname_version!=""', {
75 # Ideally, we'd like to specify the full filename for the
76 # library and set it to "libv8.so.<(soname_version)",
77 # but currently the best we can do is use 'product_name' and
78 # get "libv8-<(soname_version).so".
79 'product_name': 'v8-<(soname_version)',
80 }],
74 ], 81 ],
75 }, 82 },
76 { 83 {
77 'type': 'none', 84 'type': 'none',
78 }], 85 }],
79 ], 86 ],
80 'direct_dependent_settings': { 87 'direct_dependent_settings': {
81 'include_dirs': [ 88 'include_dirs': [
82 '../../include', 89 '../../include',
83 ], 90 ],
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 }], 883 }],
877 ], 884 ],
878 'dependencies': [ 885 'dependencies': [
879 'v8' 886 'v8'
880 ], 887 ],
881 }, 888 },
882 ], 889 ],
883 }], 890 }],
884 ], 891 ],
885 } 892 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698