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

Side by Side Diff: build/common.gypi

Issue 15001031: Remove use_system_v8 logic from the mainline gyp file (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 7 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 | tools/gyp/v8.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 11 matching lines...) Expand all
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 # Shared definitions for all V8-related targets. 28 # Shared definitions for all V8-related targets.
29 29
30 { 30 {
31 'variables': { 31 'variables': {
32 'use_system_v8%': 0,
33 'msvs_use_common_release': 0, 32 'msvs_use_common_release': 0,
34 'gcc_version%': 'unknown', 33 'gcc_version%': 'unknown',
35 'CXX%': '${CXX:-$(which g++)}', # Used to assemble a shell command. 34 'CXX%': '${CXX:-$(which g++)}', # Used to assemble a shell command.
36 'v8_compress_startup_data%': 'off', 35 'v8_compress_startup_data%': 'off',
37 'v8_target_arch%': '<(target_arch)', 36 'v8_target_arch%': '<(target_arch)',
38 # Native Client builds currently use the V8 ARM JIT and 37 # Native Client builds currently use the V8 ARM JIT and
39 # arm/simulator-arm.cc to defer the significant effort required 38 # arm/simulator-arm.cc to defer the significant effort required
40 # for NaCl JIT support. The nacl_target_arch variable provides 39 # for NaCl JIT support. The nacl_target_arch variable provides
41 # the 'true' target arch for places in this file that need it. 40 # the 'true' target arch for places in this file that need it.
42 # TODO(bradchen): get rid of nacl_target_arch when someday 41 # TODO(bradchen): get rid of nacl_target_arch when someday
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 'OptimizeReferences': '2', 507 'OptimizeReferences': '2',
509 'EnableCOMDATFolding': '2', 508 'EnableCOMDATFolding': '2',
510 }, 509 },
511 }, 510 },
512 }], # OS=="win" 511 }], # OS=="win"
513 ], # conditions 512 ], # conditions
514 }, # Release 513 }, # Release
515 }, # configurations 514 }, # configurations
516 }, # target_defaults 515 }, # target_defaults
517 } 516 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698