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

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

Issue 8462006: Override product_extension instead of product_version to set SONAME for Linux shared library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 1 month 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
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!=""', { 74 ['soname_version!=""', {
75 # Ideally, we'd like to specify the full filename for the 75 'product_extension': 'so.<(soname_version)',
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 }], 76 }],
81 ], 77 ],
82 }, 78 },
83 { 79 {
84 'type': 'none', 80 'type': 'none',
85 }], 81 }],
86 ], 82 ],
87 'direct_dependent_settings': { 83 'direct_dependent_settings': {
88 'include_dirs': [ 84 'include_dirs': [
89 '../../include', 85 '../../include',
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 }], 896 }],
901 ], 897 ],
902 'dependencies': [ 898 'dependencies': [
903 'v8' 899 'v8'
904 ], 900 ],
905 }, 901 },
906 ], 902 ],
907 }], 903 }],
908 ], 904 ],
909 } 905 }
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