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

Side by Side Diff: src/v8.gyp

Issue 2172653002: MIPS: Fix mksnapshot on big-endian. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix chromium gyp build. Created 4 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
« no previous file with comments | « gypfiles/toolchain.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 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 '<(DEPTH)', 392 '<(DEPTH)',
393 '<(SHARED_INTERMEDIATE_DIR)' 393 '<(SHARED_INTERMEDIATE_DIR)'
394 ], 394 ],
395 'actions':[{ 395 'actions':[{
396 'action_name': 'run mkpeephole', 396 'action_name': 'run mkpeephole',
397 'inputs': ['<(mkpeephole_exec)'], 397 'inputs': ['<(mkpeephole_exec)'],
398 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'], 398 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'],
399 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ], 399 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ],
400 'process_outputs_as_sources': 1, 400 'process_outputs_as_sources': 1,
401 'conditions': [ 401 'conditions': [
402 ['want_separate_host_toolset==1', { 402 ['want_separate_host_toolset_mkpeephole==1', {
403 'dependencies': ['mkpeephole#host'], 403 'dependencies': ['mkpeephole#host'],
404 'toolsets': ['host'], 404 'toolsets': ['host'],
405 }, { 405 }, {
406 'dependencies': ['mkpeephole'], 406 'dependencies': ['mkpeephole'],
407 'toolsets': ['target'], 407 'toolsets': ['target'],
408 }], 408 }],
409 ], 409 ],
410 }], 410 }],
411 'sources': [ ### gcmole(all) ### 411 'sources': [ ### gcmole(all) ###
412 '../include/v8-debug.h', 412 '../include/v8-debug.h',
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1778 'base/safe_conversions_impl.h', 1778 'base/safe_conversions_impl.h',
1779 'base/safe_math.h', 1779 'base/safe_math.h',
1780 'base/safe_math_impl.h', 1780 'base/safe_math_impl.h',
1781 'base/smart-pointers.h', 1781 'base/smart-pointers.h',
1782 'base/sys-info.cc', 1782 'base/sys-info.cc',
1783 'base/sys-info.h', 1783 'base/sys-info.h',
1784 'base/utils/random-number-generator.cc', 1784 'base/utils/random-number-generator.cc',
1785 'base/utils/random-number-generator.h', 1785 'base/utils/random-number-generator.h',
1786 ], 1786 ],
1787 'conditions': [ 1787 'conditions': [
1788 ['want_separate_host_toolset==1', { 1788 ['want_separate_host_toolset==1 or \
1789 want_separate_host_toolset_mkpeephole==1', {
1789 'toolsets': ['host', 'target'], 1790 'toolsets': ['host', 'target'],
1790 }, { 1791 }, {
1791 'toolsets': ['target'], 1792 'toolsets': ['target'],
1792 }], 1793 }],
1793 ['OS=="linux"', { 1794 ['OS=="linux"', {
1794 'conditions': [ 1795 'conditions': [
1795 ['nacl_target_arch=="none"', { 1796 ['nacl_target_arch=="none"', {
1796 'link_settings': { 1797 'link_settings': {
1797 'libraries': [ 1798 'libraries': [
1798 '-ldl', 1799 '-ldl',
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
2364 'include_dirs+': [ 2365 'include_dirs+': [
2365 '..', 2366 '..',
2366 ], 2367 ],
2367 'sources': [ 2368 'sources': [
2368 'interpreter/bytecode-peephole-table.h', 2369 'interpreter/bytecode-peephole-table.h',
2369 'interpreter/bytecodes.h', 2370 'interpreter/bytecodes.h',
2370 'interpreter/bytecodes.cc', 2371 'interpreter/bytecodes.cc',
2371 'interpreter/mkpeephole.cc' 2372 'interpreter/mkpeephole.cc'
2372 ], 2373 ],
2373 'conditions': [ 2374 'conditions': [
2374 ['want_separate_host_toolset==1', { 2375 ['want_separate_host_toolset_mkpeephole==1', {
2375 'toolsets': ['host'], 2376 'toolsets': ['host'],
2376 }, { 2377 }, {
2377 'toolsets': ['target'], 2378 'toolsets': ['target'],
2378 }], 2379 }],
2379 ], 2380 ],
2380 }, 2381 },
2381 ], 2382 ],
2382 } 2383 }
OLDNEW
« no previous file with comments | « gypfiles/toolchain.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698