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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'target_arch%': '<(target_arch)', | 93 'target_arch%': '<(target_arch)', |
94 'v8_target_arch%': '<(v8_target_arch)', | 94 'v8_target_arch%': '<(v8_target_arch)', |
95 'werror%': '-Werror', | 95 'werror%': '-Werror', |
96 'use_goma%': '<(use_goma)', | 96 'use_goma%': '<(use_goma)', |
97 'gomadir%': '<(gomadir)', | 97 'gomadir%': '<(gomadir)', |
98 'asan%': '<(asan)', | 98 'asan%': '<(asan)', |
99 'lsan%': '<(lsan)', | 99 'lsan%': '<(lsan)', |
100 'msan%': '<(msan)', | 100 'msan%': '<(msan)', |
101 'tsan%': '<(tsan)', | 101 'tsan%': '<(tsan)', |
102 | 102 |
| 103 # Add a simple extra solely for the purpose of the cctests |
| 104 'v8_extra_library_files': ['../test/cctest/test-extra.js'], |
| 105 |
103 # .gyp files or targets should set v8_code to 1 if they build V8 specific | 106 # .gyp files or targets should set v8_code to 1 if they build V8 specific |
104 # code, as opposed to external code. This variable is used to control such | 107 # code, as opposed to external code. This variable is used to control such |
105 # things as the set of warnings to enable, and whether warnings are treated | 108 # things as the set of warnings to enable, and whether warnings are treated |
106 # as errors. | 109 # as errors. |
107 'v8_code%': 0, | 110 'v8_code%': 0, |
108 | 111 |
109 # Speeds up Debug builds: | 112 # Speeds up Debug builds: |
110 # 0 - Compiler optimizations off (debuggable) (default). This may | 113 # 0 - Compiler optimizations off (debuggable) (default). This may |
111 # be 5x slower than Release (or worse). | 114 # be 5x slower than Release (or worse). |
112 # 1 - Turn on optimizations and disable slow DCHECKs, but leave | 115 # 1 - Turn on optimizations and disable slow DCHECKs, but leave |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 637 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
635 'make_global_settings': [ | 638 'make_global_settings': [ |
636 ['CC_wrapper', '<(gomadir)/gomacc'], | 639 ['CC_wrapper', '<(gomadir)/gomacc'], |
637 ['CXX_wrapper', '<(gomadir)/gomacc'], | 640 ['CXX_wrapper', '<(gomadir)/gomacc'], |
638 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 641 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
639 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 642 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
640 ], | 643 ], |
641 }], | 644 }], |
642 ], | 645 ], |
643 } | 646 } |
OLD | NEW |