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

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

Issue 5862002: Version 3.0.2. (Closed)
Patch Set: Created 10 years 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
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 'type': 'none', 189 'type': 'none',
190 }], 190 }],
191 ], 191 ],
192 'direct_dependent_settings': { 192 'direct_dependent_settings': {
193 'include_dirs': [ 193 'include_dirs': [
194 '../../include', 194 '../../include',
195 ], 195 ],
196 }, 196 },
197 }, 197 },
198 { 198 {
199 'target_name': 'v8_preparser',
200 'include_dirs': [
201 '../../include',
202 '../../src',
203 ],
204 'sources': [
205 '../../src/allocation.cc',
206 '../../src/hashmap.cc',
207 '../../src/preparse-data.cc',
208 '../../src/preparser.cc',
209 '../../src/preparser-api.cc',
210 '../../src/scanner-base.cc',
211 '../../src/token.cc',
212 '../../src/unicode.cc',
213 ],
214 'conditions': [
215 ['OS=="win" and component=="shared_library"', {
216 'sources': [ '../../src/v8preparserdll-main.cc' ],
217 'defines': [ 'BUILDING_V8_SHARED' ],
218 'direct_dependent_settings': {
219 'defines': [ 'USING_V8_SHARED' ]
220 },
221 'type': '<(component)',
222 } , {
223 'type': 'none'
224 }],
225 ['OS!="win"', {
226 'type': '<(library)'
227 }],
228 ]
229 },
230 {
231 'target_name': 'v8_snapshot', 199 'target_name': 'v8_snapshot',
232 'type': '<(library)', 200 'type': '<(library)',
233 'conditions': [ 201 'conditions': [
234 ['OS=="win" and component=="shared_library"', { 202 ['OS=="win" and component=="shared_library"', {
235 'defines': [ 203 'defines': [
236 'BUILDING_V8_SHARED', 204 'BUILDING_V8_SHARED',
237 ], 205 ],
238 }], 206 }],
239 ], 207 ],
240 'dependencies': [ 208 'dependencies': [
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 ], 776 ],
809 'conditions': [ 777 'conditions': [
810 ['OS=="win"', { 778 ['OS=="win"', {
811 # This could be gotten by not setting chromium_code, if that's OK. 779 # This could be gotten by not setting chromium_code, if that's OK.
812 'defines': ['_CRT_SECURE_NO_WARNINGS'], 780 'defines': ['_CRT_SECURE_NO_WARNINGS'],
813 }], 781 }],
814 ], 782 ],
815 }, 783 },
816 ], 784 ],
817 } 785 }
OLDNEW
« ChangeLog ('K') | « test/sputnik/README ('k') | tools/logreader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698