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

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

Issue 1564021: Fix the gyp file to include the ENBABLE_WMSTATE_TRACKING (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 8 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 | « no previous file | 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 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 19 matching lines...) Expand all
30 'msvs_use_common_release': 0, 30 'msvs_use_common_release': 0,
31 'gcc_version%': 'unknown', 31 'gcc_version%': 'unknown',
32 'target_arch%': 'ia32', 32 'target_arch%': 'ia32',
33 'v8_use_snapshot%': 'true', 33 'v8_use_snapshot%': 'true',
34 'v8_regexp%': 'native', 34 'v8_regexp%': 'native',
35 }, 35 },
36 'target_defaults': { 36 'target_defaults': {
37 'defines': [ 37 'defines': [
38 'ENABLE_LOGGING_AND_PROFILING', 38 'ENABLE_LOGGING_AND_PROFILING',
39 'ENABLE_DEBUGGER_SUPPORT', 39 'ENABLE_DEBUGGER_SUPPORT',
40 'ENABLE_VMSTATE_TRACKING',
40 ], 41 ],
41 'conditions': [ 42 'conditions': [
42 ['target_arch=="arm"', { 43 ['target_arch=="arm"', {
43 'defines': [ 44 'defines': [
44 'V8_TARGET_ARCH_ARM', 45 'V8_TARGET_ARCH_ARM',
45 ], 46 ],
46 }], 47 }],
47 ['target_arch=="ia32"', { 48 ['target_arch=="ia32"', {
48 'defines': [ 49 'defines': [
49 'V8_TARGET_ARCH_IA32', 50 'V8_TARGET_ARCH_IA32',
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 ], 674 ],
674 'conditions': [ 675 'conditions': [
675 [ 'OS=="win"', { 676 [ 'OS=="win"', {
676 # This could be gotten by not setting chromium_code, if that's OK. 677 # This could be gotten by not setting chromium_code, if that's OK.
677 'defines': ['_CRT_SECURE_NO_WARNINGS'], 678 'defines': ['_CRT_SECURE_NO_WARNINGS'],
678 }], 679 }],
679 ], 680 ],
680 }, 681 },
681 ], 682 ],
682 } 683 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698