OLD | NEW |
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 Loading... |
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_mkpeephole==1', { | 402 ['want_separate_host_toolset==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 Loading... |
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 or \ | 1788 ['want_separate_host_toolset==1', { |
1789 want_separate_host_toolset_mkpeephole==1', { | |
1790 'toolsets': ['host', 'target'], | 1789 'toolsets': ['host', 'target'], |
1791 }, { | 1790 }, { |
1792 'toolsets': ['target'], | 1791 'toolsets': ['target'], |
1793 }], | 1792 }], |
1794 ['OS=="linux"', { | 1793 ['OS=="linux"', { |
1795 'conditions': [ | 1794 'conditions': [ |
1796 ['nacl_target_arch=="none"', { | 1795 ['nacl_target_arch=="none"', { |
1797 'link_settings': { | 1796 'link_settings': { |
1798 'libraries': [ | 1797 'libraries': [ |
1799 '-ldl', | 1798 '-ldl', |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2365 'include_dirs+': [ | 2364 'include_dirs+': [ |
2366 '..', | 2365 '..', |
2367 ], | 2366 ], |
2368 'sources': [ | 2367 'sources': [ |
2369 'interpreter/bytecode-peephole-table.h', | 2368 'interpreter/bytecode-peephole-table.h', |
2370 'interpreter/bytecodes.h', | 2369 'interpreter/bytecodes.h', |
2371 'interpreter/bytecodes.cc', | 2370 'interpreter/bytecodes.cc', |
2372 'interpreter/mkpeephole.cc' | 2371 'interpreter/mkpeephole.cc' |
2373 ], | 2372 ], |
2374 'conditions': [ | 2373 'conditions': [ |
2375 ['want_separate_host_toolset_mkpeephole==1', { | 2374 ['want_separate_host_toolset==1', { |
2376 'toolsets': ['host'], | 2375 'toolsets': ['host'], |
2377 }, { | 2376 }, { |
2378 'toolsets': ['target'], | 2377 'toolsets': ['target'], |
2379 }], | 2378 }], |
2380 ], | 2379 ], |
2381 }, | 2380 }, |
2382 ], | 2381 ], |
2383 } | 2382 } |
OLD | NEW |