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

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

Issue 7658011: GYP fixes: -Werror, snapshot.log, want_separate_host_toolset detection (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 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 | « build/common.gypi ('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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ['v8_compress_startup_data=="bz2"', { 137 ['v8_compress_startup_data=="bz2"', {
138 'defines': [ 138 'defines': [
139 'COMPRESS_STARTUP_DATA_BZ2', 139 'COMPRESS_STARTUP_DATA_BZ2',
140 ], 140 ],
141 }], 141 }],
142 ], 142 ],
143 'configurations': { 143 'configurations': {
144 'Debug': { 144 'Debug': {
145 'defines': [ 145 'defines': [
146 'DEBUG', 146 'DEBUG',
147 '_DEBUG',
148 'ENABLE_DISASSEMBLER', 147 'ENABLE_DISASSEMBLER',
149 'V8_ENABLE_CHECKS', 148 'V8_ENABLE_CHECKS',
150 'OBJECT_PRINT', 149 'OBJECT_PRINT',
151 ], 150 ],
152 'msvs_settings': { 151 'msvs_settings': {
153 'VCCLCompilerTool': { 152 'VCCLCompilerTool': {
154 'Optimization': '0', 153 'Optimization': '0',
155 154
156 'conditions': [ 155 'conditions': [
157 ['OS=="win" and component=="shared_library"', { 156 ['OS=="win" and component=="shared_library"', {
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 'actions': [ 364 'actions': [
366 { 365 {
367 'action_name': 'run_mksnapshot', 366 'action_name': 'run_mksnapshot',
368 'inputs': [ 367 'inputs': [
369 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFI X)', 368 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFI X)',
370 ], 369 ],
371 'outputs': [ 370 'outputs': [
372 '<(INTERMEDIATE_DIR)/snapshot.cc', 371 '<(INTERMEDIATE_DIR)/snapshot.cc',
373 ], 372 ],
374 'variables': { 373 'variables': {
375 'mksnapshot_flags': [], 374 'mksnapshot_flags': [
375 '--log-snapshot-positions',
376 '--logfile', '<(INTERMEDIATE_DIR)/snapshot.log',
377 ],
376 }, 378 },
377 'conditions': [ 379 'conditions': [
378 ['v8_target_arch=="arm"', { 380 ['v8_target_arch=="arm"', {
379 # The following rules should be consistent with chromium's 381 # The following rules should be consistent with chromium's
380 # common.gypi and V8's runtime rule to ensure they all generat e 382 # common.gypi and V8's runtime rule to ensure they all generat e
381 # the same correct machine code. The following issue is about 383 # the same correct machine code. The following issue is about
382 # V8's runtime rule about vfpv3 and neon: 384 # V8's runtime rule about vfpv3 and neon:
383 # http://code.google.com/p/v8/issues/detail?id=914 385 # http://code.google.com/p/v8/issues/detail?id=914
384 'conditions': [ 386 'conditions': [
385 ['armv7==1', { 387 ['armv7==1', {
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 }], 1106 }],
1105 ], 1107 ],
1106 'dependencies': [ 1108 'dependencies': [
1107 'v8' 1109 'v8'
1108 ], 1110 ],
1109 }, 1111 },
1110 ], 1112 ],
1111 }], 1113 }],
1112 ], 1114 ],
1113 } 1115 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698