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

Side by Side Diff: build/common.gypi

Issue 11418101: build: make python executable configurable
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « Makefile ('k') | src/d8.gyp » ('j') | 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 # describes various parameters of the VM for use by debuggers. See 95 # describes various parameters of the VM for use by debuggers. See
96 # tools/gen-postmortem-metadata.py for details. 96 # tools/gen-postmortem-metadata.py for details.
97 'v8_postmortem_support%': 'false', 97 'v8_postmortem_support%': 'false',
98 98
99 # For a shared library build, results in "libv8-<(soname_version).so". 99 # For a shared library build, results in "libv8-<(soname_version).so".
100 'soname_version%': '', 100 'soname_version%': '',
101 101
102 # Interpreted regexp engine exists as platform-independent alternative 102 # Interpreted regexp engine exists as platform-independent alternative
103 # based where the regular expression is compiled to a bytecode. 103 # based where the regular expression is compiled to a bytecode.
104 'v8_interpreted_regexp%': 0, 104 'v8_interpreted_regexp%': 0,
105
106 # Name of the python executable.
107 'python%': 'python',
105 }, 108 },
106 'target_defaults': { 109 'target_defaults': {
107 'conditions': [ 110 'conditions': [
108 ['v8_enable_debugger_support==1', { 111 ['v8_enable_debugger_support==1', {
109 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 112 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
110 }], 113 }],
111 ['v8_enable_disassembler==1', { 114 ['v8_enable_disassembler==1', {
112 'defines': ['ENABLE_DISASSEMBLER',], 115 'defines': ['ENABLE_DISASSEMBLER',],
113 }], 116 }],
114 ['v8_enable_gdbjit==1', { 117 ['v8_enable_gdbjit==1', {
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 'OptimizeReferences': '2', 447 'OptimizeReferences': '2',
445 'EnableCOMDATFolding': '2', 448 'EnableCOMDATFolding': '2',
446 }, 449 },
447 }, 450 },
448 }], # OS=="win" 451 }], # OS=="win"
449 ], # conditions 452 ], # conditions
450 }, # Release 453 }, # Release
451 }, # configurations 454 }, # configurations
452 }, # target_defaults 455 }, # target_defaults
453 } 456 }
OLDNEW
« no previous file with comments | « Makefile ('k') | src/d8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698