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

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

Issue 6580038: [Isolates] Merge from bleeding_edge, revisions 5934-6100. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 10 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 | « test/sputnik/README ('k') | tools/test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 }], 63 }],
64 ], 64 ],
65 }], 65 }],
66 ], 66 ],
67 'configurations': { 67 'configurations': {
68 'Debug': { 68 'Debug': {
69 'defines': [ 69 'defines': [
70 'DEBUG', 70 'DEBUG',
71 '_DEBUG', 71 '_DEBUG',
72 'ENABLE_DISASSEMBLER', 72 'ENABLE_DISASSEMBLER',
73 'V8_ENABLE_CHECKS' 73 'V8_ENABLE_CHECKS',
74 'OBJECT_PRINT',
74 ], 75 ],
75 'msvs_settings': { 76 'msvs_settings': {
76 'VCCLCompilerTool': { 77 'VCCLCompilerTool': {
77 'Optimizations': '0', 78 'Optimization': '0',
78 79
79 'conditions': [ 80 'conditions': [
80 ['OS=="win" and component=="shared_library"', { 81 ['OS=="win" and component=="shared_library"', {
81 'RuntimeLibrary': '3', # /MDd 82 'RuntimeLibrary': '3', # /MDd
82 }, { 83 }, {
83 'RuntimeLibrary': '1', # /MTd 84 'RuntimeLibrary': '1', # /MTd
84 }], 85 }],
85 ], 86 ],
86 }, 87 },
87 'VCLinkerTool': { 88 'VCLinkerTool': {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 128 },
128 }], 129 }],
129 ['OS=="win"', { 130 ['OS=="win"', {
130 'msvs_configuration_attributes': { 131 'msvs_configuration_attributes': {
131 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', 132 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
132 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 133 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
133 'CharacterSet': '1', 134 'CharacterSet': '1',
134 }, 135 },
135 'msvs_settings': { 136 'msvs_settings': {
136 'VCCLCompilerTool': { 137 'VCCLCompilerTool': {
137 'Optimizations': '2', 138 'Optimization': '2',
138 'InlineFunctionExpansion': '2', 139 'InlineFunctionExpansion': '2',
139 'EnableIntrinsicFunctions': 'true', 140 'EnableIntrinsicFunctions': 'true',
140 'FavorSizeOrSpeed': '0', 141 'FavorSizeOrSpeed': '0',
141 'OmitFramePointers': 'true', 142 'OmitFramePointers': 'true',
142 'StringPooling': 'true', 143 'StringPooling': 'true',
143 144
144 'conditions': [ 145 'conditions': [
145 ['OS=="win" and component=="shared_library"', { 146 ['OS=="win" and component=="shared_library"', {
146 'RuntimeLibrary': '2', #/MD 147 'RuntimeLibrary': '2', #/MD
147 }, { 148 }, {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'USING_V8_SHARED', 185 'USING_V8_SHARED',
185 ], 186 ],
186 }, 187 },
187 }, 188 },
188 { 189 {
189 'type': 'none', 190 'type': 'none',
190 }], 191 }],
191 ], 192 ],
192 'direct_dependent_settings': { 193 'direct_dependent_settings': {
193 'include_dirs': [ 194 'include_dirs': [
194 '../../include', 195 '../../include',
195 ], 196 ],
196 }, 197 },
197 }, 198 },
198 { 199 {
200 'target_name': 'v8_preparser',
201 'include_dirs': [
202 '../../include',
203 '../../src',
204 ],
205 'sources': [
206 '../../src/allocation.cc',
207 '../../src/hashmap.cc',
208 '../../src/preparse-data.cc',
209 '../../src/preparser.cc',
210 '../../src/preparser-api.cc',
211 '../../src/scanner-base.cc',
212 '../../src/token.cc',
213 '../../src/unicode.cc',
214 ],
215 'conditions': [
216 ['OS=="win" and component=="shared_library"', {
217 'sources': [ '../../src/v8preparserdll-main.cc' ],
218 'defines': [ 'BUILDING_V8_SHARED' ],
219 'direct_dependent_settings': {
220 'defines': [ 'USING_V8_SHARED' ]
221 },
222 'type': '<(component)',
223 } , {
224 'type': 'none'
225 }],
226 ['OS!="win"', {
227 'type': '<(library)'
228 }],
229 ]
230 },
231 {
199 'target_name': 'v8_snapshot', 232 'target_name': 'v8_snapshot',
200 'type': '<(library)', 233 'type': '<(library)',
201 'conditions': [ 234 'conditions': [
202 ['OS=="win" and component=="shared_library"', { 235 ['OS=="win" and component=="shared_library"', {
203 'defines': [ 236 'defines': [
204 'BUILDING_V8_SHARED', 237 'BUILDING_V8_SHARED',
205 ], 238 ],
206 }], 239 }],
207 ], 240 ],
208 'dependencies': [ 241 'dependencies': [
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 '../../src/interpreter-irregexp.h', 416 '../../src/interpreter-irregexp.h',
384 '../../src/isolate.cc', 417 '../../src/isolate.cc',
385 '../../src/isolate.h', 418 '../../src/isolate.h',
386 '../../src/jump-target-inl.h', 419 '../../src/jump-target-inl.h',
387 '../../src/jump-target.cc', 420 '../../src/jump-target.cc',
388 '../../src/jump-target.h', 421 '../../src/jump-target.h',
389 '../../src/jsregexp.cc', 422 '../../src/jsregexp.cc',
390 '../../src/jsregexp.h', 423 '../../src/jsregexp.h',
391 '../../src/list-inl.h', 424 '../../src/list-inl.h',
392 '../../src/list.h', 425 '../../src/list.h',
393 » '../../src/lithium-allocator.cc', 426 '../../src/lithium-allocator.cc',
394 '../../src/lithium-allocator.h', 427 '../../src/lithium-allocator.h',
395 '../../src/liveedit.cc', 428 '../../src/liveedit.cc',
396 '../../src/liveedit.h', 429 '../../src/liveedit.h',
397 '../../src/log-inl.h', 430 '../../src/log-inl.h',
398 '../../src/log-utils.cc', 431 '../../src/log-utils.cc',
399 '../../src/log-utils.h', 432 '../../src/log-utils.h',
400 '../../src/log.cc', 433 '../../src/log.cc',
401 '../../src/log.h', 434 '../../src/log.h',
402 '../../src/macro-assembler.h', 435 '../../src/macro-assembler.h',
403 '../../src/mark-compact.cc', 436 '../../src/mark-compact.cc',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 '../../src/version.cc', 533 '../../src/version.cc',
501 '../../src/version.h', 534 '../../src/version.h',
502 '../../src/virtual-frame-inl.h', 535 '../../src/virtual-frame-inl.h',
503 '../../src/virtual-frame.cc', 536 '../../src/virtual-frame.cc',
504 '../../src/virtual-frame.h', 537 '../../src/virtual-frame.h',
505 '../../src/vm-state-inl.h', 538 '../../src/vm-state-inl.h',
506 '../../src/vm-state.h', 539 '../../src/vm-state.h',
507 '../../src/zone-inl.h', 540 '../../src/zone-inl.h',
508 '../../src/zone.cc', 541 '../../src/zone.cc',
509 '../../src/zone.h', 542 '../../src/zone.h',
510 » '../../src/extensions/externalize-string-extension.cc', 543 '../../src/extensions/externalize-string-extension.cc',
511 » '../../src/extensions/externalize-string-extension.h', 544 '../../src/extensions/externalize-string-extension.h',
512 » '../../src/extensions/gc-extension.cc', 545 '../../src/extensions/gc-extension.cc',
513 » '../../src/extensions/gc-extension.h', 546 '../../src/extensions/gc-extension.h',
514 ], 547 ],
515 'conditions': [ 548 'conditions': [
516 ['v8_target_arch=="arm"', { 549 ['v8_target_arch=="arm"', {
517 'include_dirs+': [ 550 'include_dirs+': [
518 '../../src/arm', 551 '../../src/arm',
519 ], 552 ],
520 'sources': [ 553 'sources': [
521 '../../src/jump-target-light.h', 554 '../../src/jump-target-light.h',
522 '../../src/jump-target-light-inl.h', 555 '../../src/jump-target-light-inl.h',
523 '../../src/jump-target-light.cc', 556 '../../src/jump-target-light.cc',
(...skipping 11 matching lines...) Expand all
535 '../../src/arm/constants-arm.cc', 568 '../../src/arm/constants-arm.cc',
536 '../../src/arm/cpu-arm.cc', 569 '../../src/arm/cpu-arm.cc',
537 '../../src/arm/debug-arm.cc', 570 '../../src/arm/debug-arm.cc',
538 '../../src/arm/deoptimizer-arm.cc', 571 '../../src/arm/deoptimizer-arm.cc',
539 '../../src/arm/disasm-arm.cc', 572 '../../src/arm/disasm-arm.cc',
540 '../../src/arm/frames-arm.cc', 573 '../../src/arm/frames-arm.cc',
541 '../../src/arm/frames-arm.h', 574 '../../src/arm/frames-arm.h',
542 '../../src/arm/full-codegen-arm.cc', 575 '../../src/arm/full-codegen-arm.cc',
543 '../../src/arm/ic-arm.cc', 576 '../../src/arm/ic-arm.cc',
544 '../../src/arm/jump-target-arm.cc', 577 '../../src/arm/jump-target-arm.cc',
578 '../../src/arm/lithium-codegen-arm.cc',
579 '../../src/arm/lithium-codegen-arm.h',
580 '../../src/arm/lithium-arm.cc',
581 '../../src/arm/lithium-arm.h',
545 '../../src/arm/macro-assembler-arm.cc', 582 '../../src/arm/macro-assembler-arm.cc',
546 '../../src/arm/macro-assembler-arm.h', 583 '../../src/arm/macro-assembler-arm.h',
547 '../../src/arm/regexp-macro-assembler-arm.cc', 584 '../../src/arm/regexp-macro-assembler-arm.cc',
548 '../../src/arm/regexp-macro-assembler-arm.h', 585 '../../src/arm/regexp-macro-assembler-arm.h',
549 '../../src/arm/register-allocator-arm.cc', 586 '../../src/arm/register-allocator-arm.cc',
550 '../../src/arm/simulator-arm.cc', 587 '../../src/arm/simulator-arm.cc',
551 '../../src/arm/stub-cache-arm.cc', 588 '../../src/arm/stub-cache-arm.cc',
552 '../../src/arm/virtual-frame-arm-inl.h', 589 '../../src/arm/virtual-frame-arm-inl.h',
553 '../../src/arm/virtual-frame-arm.cc', 590 '../../src/arm/virtual-frame-arm.cc',
554 '../../src/arm/virtual-frame-arm.h', 591 '../../src/arm/virtual-frame-arm.h',
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 ], 811 ],
775 'conditions': [ 812 'conditions': [
776 ['OS=="win"', { 813 ['OS=="win"', {
777 # This could be gotten by not setting chromium_code, if that's OK. 814 # This could be gotten by not setting chromium_code, if that's OK.
778 'defines': ['_CRT_SECURE_NO_WARNINGS'], 815 'defines': ['_CRT_SECURE_NO_WARNINGS'],
779 }], 816 }],
780 ], 817 ],
781 }, 818 },
782 ], 819 ],
783 } 820 }
OLDNEW
« no previous file with comments | « test/sputnik/README ('k') | tools/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698