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

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

Issue 7350017: Make fast tls the default (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 5 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/platform-tls.h ('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 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 'v8_use_snapshot%': 'true', 57 'v8_use_snapshot%': 'true',
58 'host_os%': '<(OS)', 58 'host_os%': '<(OS)',
59 'v8_use_liveobjectlist%': 'false', 59 'v8_use_liveobjectlist%': 'false',
60 }, 60 },
61 'conditions': [ 61 'conditions': [
62 ['use_system_v8==0', { 62 ['use_system_v8==0', {
63 'target_defaults': { 63 'target_defaults': {
64 'defines': [ 64 'defines': [
65 'ENABLE_DEBUGGER_SUPPORT', 65 'ENABLE_DEBUGGER_SUPPORT',
66 'V8_FAST_TLS',
67 ], 66 ],
68 'conditions': [ 67 'conditions': [
69 ['OS!="mac"', { 68 ['OS!="mac"', {
70 # TODO(mark): The OS!="mac" conditional is temporary. It can be 69 # TODO(mark): The OS!="mac" conditional is temporary. It can be
71 # removed once the Mac Chromium build stops setting target_arch to 70 # removed once the Mac Chromium build stops setting target_arch to
72 # ia32 and instead sets it to mac. Other checks in this file for 71 # ia32 and instead sets it to mac. Other checks in this file for
73 # OS=="mac" can be removed at that time as well. This can be cleaned 72 # OS=="mac" can be removed at that time as well. This can be cleaned
74 # up once http://crbug.com/44205 is fixed. 73 # up once http://crbug.com/44205 is fixed.
75 'conditions': [ 74 'conditions': [
76 ['v8_target_arch=="arm"', { 75 ['v8_target_arch=="arm"', {
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 'type': 'none', 1004 'type': 'none',
1006 'toolsets': ['host'], 1005 'toolsets': ['host'],
1007 'dependencies': [ 1006 'dependencies': [
1008 'v8' 1007 'v8'
1009 ], 1008 ],
1010 }, 1009 },
1011 ], 1010 ],
1012 }], 1011 }],
1013 ], 1012 ],
1014 } 1013 }
OLDNEW
« no previous file with comments | « src/platform-tls.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698