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

Side by Side Diff: build/standalone.gypi

Issue 18638002: Enable GDBJIT interface for standalone by default. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « Makefile ('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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 (OS=="android")', { 80 (OS=="android")', {
81 'want_separate_host_toolset': 1, 81 'want_separate_host_toolset': 1,
82 }, { 82 }, {
83 'want_separate_host_toolset': 0, 83 'want_separate_host_toolset': 0,
84 }], 84 }],
85 ['OS == "win"', { 85 ['OS == "win"', {
86 'os_posix%': 0, 86 'os_posix%': 0,
87 }, { 87 }, {
88 'os_posix%': 1, 88 'os_posix%': 1,
89 }], 89 }],
90 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \
91 (OS=="linux" or OS=="mac")', {
92 'v8_enable_gdbjit%': 1,
93 }, {
94 'v8_enable_gdbjit%': 0,
95 }],
90 ], 96 ],
91 # Default ARM variable settings. 97 # Default ARM variable settings.
92 'armv7%': 'default', 98 'armv7%': 'default',
93 'arm_neon%': 0, 99 'arm_neon%': 0,
94 'arm_fpu%': 'vfpv3', 100 'arm_fpu%': 'vfpv3',
95 'arm_float_abi%': 'default', 101 'arm_float_abi%': 'default',
96 'arm_thumb': 'default', 102 'arm_thumb': 'default',
97 }, 103 },
98 'target_defaults': { 104 'target_defaults': {
99 'variables': { 105 'variables': {
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 }, 261 },
256 'target_conditions': [ 262 'target_conditions': [
257 ['_type!="static_library"', { 263 ['_type!="static_library"', {
258 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 264 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
259 }], 265 }],
260 ], # target_conditions 266 ], # target_conditions
261 }, # target_defaults 267 }, # target_defaults
262 }], # OS=="mac" 268 }], # OS=="mac"
263 ], 269 ],
264 } 270 }
OLDNEW
« no previous file with comments | « Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698