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

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

Issue 25994002: Explicitly include defaults.cc in the shared_library gyp target. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 | « src/defaults.cc ('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 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'v8_base.<(v8_target_arch)', 54 'v8_base.<(v8_target_arch)',
55 'v8_nosnapshot.<(v8_target_arch)', 55 'v8_nosnapshot.<(v8_target_arch)',
56 ], 56 ],
57 }], 57 }],
58 ['component=="shared_library"', { 58 ['component=="shared_library"', {
59 'type': '<(component)', 59 'type': '<(component)',
60 'sources': [ 60 'sources': [
61 # Note: on non-Windows we still build this file so that gyp 61 # Note: on non-Windows we still build this file so that gyp
62 # has some sources to link into the component. 62 # has some sources to link into the component.
63 '../../src/v8dll-main.cc', 63 '../../src/v8dll-main.cc',
64 '../../src/defaults.cc',
65 ],
66 'include_dirs': [
67 '../../include',
64 ], 68 ],
65 'defines': [ 69 'defines': [
66 'V8_SHARED', 70 'V8_SHARED',
67 'BUILDING_V8_SHARED', 71 'BUILDING_V8_SHARED',
68 ], 72 ],
69 'direct_dependent_settings': { 73 'direct_dependent_settings': {
70 'defines': [ 74 'defines': [
71 'V8_SHARED', 75 'V8_SHARED',
72 'USING_V8_SHARED', 76 'USING_V8_SHARED',
73 ], 77 ],
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 }], 1051 }],
1048 ['v8_compress_startup_data=="bz2"', { 1052 ['v8_compress_startup_data=="bz2"', {
1049 'libraries': [ 1053 'libraries': [
1050 '-lbz2', 1054 '-lbz2',
1051 ] 1055 ]
1052 }], 1056 }],
1053 ], 1057 ],
1054 }, 1058 },
1055 ], 1059 ],
1056 } 1060 }
OLDNEW
« no previous file with comments | « src/defaults.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698