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

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

Issue 6696112: Fast TLS support.
Patch Set: Created 9 years, 9 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
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 23 matching lines...) Expand all
34 'v8_use_snapshot%': 'true', 34 'v8_use_snapshot%': 'true',
35 'v8_use_liveobjectlist%': 'false', 35 'v8_use_liveobjectlist%': 'false',
36 }, 36 },
37 'conditions': [ 37 'conditions': [
38 ['use_system_v8==0', { 38 ['use_system_v8==0', {
39 'target_defaults': { 39 'target_defaults': {
40 'defines': [ 40 'defines': [
41 'ENABLE_LOGGING_AND_PROFILING', 41 'ENABLE_LOGGING_AND_PROFILING',
42 'ENABLE_DEBUGGER_SUPPORT', 42 'ENABLE_DEBUGGER_SUPPORT',
43 'ENABLE_VMSTATE_TRACKING', 43 'ENABLE_VMSTATE_TRACKING',
44 'V8_FAST_TLS',
44 ], 45 ],
45 'conditions': [ 46 'conditions': [
46 ['OS!="mac"', { 47 ['OS!="mac"', {
47 # TODO(mark): The OS!="mac" conditional is temporary. It can be 48 # TODO(mark): The OS!="mac" conditional is temporary. It can be
48 # removed once the Mac Chromium build stops setting target_arch to 49 # removed once the Mac Chromium build stops setting target_arch to
49 # ia32 and instead sets it to mac. Other checks in this file for 50 # ia32 and instead sets it to mac. Other checks in this file for
50 # OS=="mac" can be removed at that time as well. This can be cleaned 51 # OS=="mac" can be removed at that time as well. This can be cleaned
51 # up once http://crbug.com/44205 is fixed. 52 # up once http://crbug.com/44205 is fixed.
52 'conditions': [ 53 'conditions': [
53 ['v8_target_arch=="arm"', { 54 ['v8_target_arch=="arm"', {
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 '../../src/natives.h', 431 '../../src/natives.h',
431 '../../src/objects-debug.cc', 432 '../../src/objects-debug.cc',
432 '../../src/objects-printer.cc', 433 '../../src/objects-printer.cc',
433 '../../src/objects-inl.h', 434 '../../src/objects-inl.h',
434 '../../src/objects-visiting.cc', 435 '../../src/objects-visiting.cc',
435 '../../src/objects-visiting.h', 436 '../../src/objects-visiting.h',
436 '../../src/objects.cc', 437 '../../src/objects.cc',
437 '../../src/objects.h', 438 '../../src/objects.h',
438 '../../src/parser.cc', 439 '../../src/parser.cc',
439 '../../src/parser.h', 440 '../../src/parser.h',
441 '../../src/platform-tls-win32.h',
442 '../../src/platform-tls.h',
440 '../../src/platform.h', 443 '../../src/platform.h',
441 '../../src/preparse-data.cc', 444 '../../src/preparse-data.cc',
442 '../../src/preparse-data.h', 445 '../../src/preparse-data.h',
443 '../../src/preparser.cc', 446 '../../src/preparser.cc',
444 '../../src/preparser.h', 447 '../../src/preparser.h',
445 '../../src/prettyprinter.cc', 448 '../../src/prettyprinter.cc',
446 '../../src/prettyprinter.h', 449 '../../src/prettyprinter.h',
447 '../../src/property.cc', 450 '../../src/property.cc',
448 '../../src/property.h', 451 '../../src/property.h',
449 '../../src/profile-generator-inl.h', 452 '../../src/profile-generator-inl.h',
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 'target_name': 'v8_shell', 834 'target_name': 'v8_shell',
832 'type': 'none', 835 'type': 'none',
833 'dependencies': [ 836 'dependencies': [
834 'v8' 837 'v8'
835 ], 838 ],
836 }, 839 },
837 ], 840 ],
838 }], 841 }],
839 ], 842 ],
840 } 843 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698