OLD | NEW |
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'type': 'none', | 204 'type': 'none', |
205 }], | 205 }], |
206 ], | 206 ], |
207 'direct_dependent_settings': { | 207 'direct_dependent_settings': { |
208 'include_dirs': [ | 208 'include_dirs': [ |
209 '../../include', | 209 '../../include', |
210 ], | 210 ], |
211 }, | 211 }, |
212 }, | 212 }, |
213 { | 213 { |
214 'target_name': 'v8_preparser', | |
215 'include_dirs': [ | |
216 '../../include', | |
217 '../../src', | |
218 ], | |
219 'sources': [ | |
220 '../../src/allocation.cc', | |
221 '../../src/hashmap.cc', | |
222 '../../src/preparse-data.cc', | |
223 '../../src/preparser.cc', | |
224 '../../src/preparser-api.cc', | |
225 '../../src/scanner-base.cc', | |
226 '../../src/token.cc', | |
227 '../../src/unicode.cc', | |
228 ], | |
229 'conditions': [ | |
230 ['OS=="win" and component=="shared_library"', { | |
231 'sources': [ '../../src/v8preparserdll-main.cc' ], | |
232 'defines': [ 'BUILDING_V8_SHARED' ], | |
233 'direct_dependent_settings': { | |
234 'defines': [ 'USING_V8_SHARED' ] | |
235 }, | |
236 'type': '<(component)', | |
237 } , { | |
238 'type': 'none' | |
239 }], | |
240 ['OS!="win"', { | |
241 'type': '<(library)' | |
242 }], | |
243 ] | |
244 }, | |
245 { | |
246 'target_name': 'v8_snapshot', | 214 'target_name': 'v8_snapshot', |
247 'type': '<(library)', | 215 'type': '<(library)', |
248 'conditions': [ | 216 'conditions': [ |
249 ['OS=="win" and component=="shared_library"', { | 217 ['OS=="win" and component=="shared_library"', { |
250 'defines': [ | 218 'defines': [ |
251 'BUILDING_V8_SHARED', | 219 'BUILDING_V8_SHARED', |
252 ], | 220 ], |
253 }], | 221 }], |
254 ], | 222 ], |
255 'dependencies': [ | 223 'dependencies': [ |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
862 'target_name': 'v8_shell', | 830 'target_name': 'v8_shell', |
863 'type': 'none', | 831 'type': 'none', |
864 'dependencies': [ | 832 'dependencies': [ |
865 'v8' | 833 'v8' |
866 ], | 834 ], |
867 }, | 835 }, |
868 ], | 836 ], |
869 }], | 837 }], |
870 ], | 838 ], |
871 } | 839 } |
OLD | NEW |