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

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

Issue 7350014: Remove the ability to compile without logging and profiling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments 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 | « tools/gcmole/gcmole.lua ('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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'v8_use_arm_eabi_hardfloat%': 'false', 55 'v8_use_arm_eabi_hardfloat%': 'false',
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_LOGGING_AND_PROFILING',
66 'ENABLE_DEBUGGER_SUPPORT', 65 'ENABLE_DEBUGGER_SUPPORT',
67 'ENABLE_VMSTATE_TRACKING',
68 'V8_FAST_TLS', 66 'V8_FAST_TLS',
69 ], 67 ],
70 'conditions': [ 68 'conditions': [
71 ['OS!="mac"', { 69 ['OS!="mac"', {
72 # TODO(mark): The OS!="mac" conditional is temporary. It can be 70 # TODO(mark): The OS!="mac" conditional is temporary. It can be
73 # removed once the Mac Chromium build stops setting target_arch to 71 # removed once the Mac Chromium build stops setting target_arch to
74 # ia32 and instead sets it to mac. Other checks in this file for 72 # ia32 and instead sets it to mac. Other checks in this file for
75 # OS=="mac" can be removed at that time as well. This can be cleaned 73 # OS=="mac" can be removed at that time as well. This can be cleaned
76 # up once http://crbug.com/44205 is fixed. 74 # up once http://crbug.com/44205 is fixed.
77 'conditions': [ 75 'conditions': [
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 'type': 'none', 1005 'type': 'none',
1008 'toolsets': ['host'], 1006 'toolsets': ['host'],
1009 'dependencies': [ 1007 'dependencies': [
1010 'v8' 1008 'v8'
1011 ], 1009 ],
1012 }, 1010 },
1013 ], 1011 ],
1014 }], 1012 }],
1015 ], 1013 ],
1016 } 1014 }
OLDNEW
« no previous file with comments | « tools/gcmole/gcmole.lua ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698