| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 ], | 435 ], |
| 436 'defines': [ | 436 'defines': [ |
| 437 # TODO(jochen): Remove again after this is globally turned on. | 437 # TODO(jochen): Remove again after this is globally turned on. |
| 438 'V8_IMMINENT_DEPRECATION_WARNINGS', | 438 'V8_IMMINENT_DEPRECATION_WARNINGS', |
| 439 ], | 439 ], |
| 440 'sources': [ ### gcmole(all) ### | 440 'sources': [ ### gcmole(all) ### |
| 441 '../../include/v8-debug.h', | 441 '../../include/v8-debug.h', |
| 442 '../../include/v8-experimental.h', | 442 '../../include/v8-experimental.h', |
| 443 '../../include/v8-platform.h', | 443 '../../include/v8-platform.h', |
| 444 '../../include/v8-profiler.h', | 444 '../../include/v8-profiler.h', |
| 445 '../../include/v8-sampler.h', |
| 445 '../../include/v8-testing.h', | 446 '../../include/v8-testing.h', |
| 447 '../../include/v8-tracing-controller.h', |
| 446 '../../include/v8-util.h', | 448 '../../include/v8-util.h', |
| 447 '../../include/v8-version.h', | 449 '../../include/v8-version.h', |
| 448 '../../include/v8.h', | 450 '../../include/v8.h', |
| 449 '../../include/v8config.h', | 451 '../../include/v8config.h', |
| 450 '../../src/accessors.cc', | 452 '../../src/accessors.cc', |
| 451 '../../src/accessors.h', | 453 '../../src/accessors.h', |
| 452 '../../src/address-map.cc', | 454 '../../src/address-map.cc', |
| 453 '../../src/address-map.h', | 455 '../../src/address-map.h', |
| 454 '../../src/allocation.cc', | 456 '../../src/allocation.cc', |
| 455 '../../src/allocation.h', | 457 '../../src/allocation.h', |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 '../../src/unicode.h', | 1153 '../../src/unicode.h', |
| 1152 '../../src/unicode-cache-inl.h', | 1154 '../../src/unicode-cache-inl.h', |
| 1153 '../../src/unicode-cache.h', | 1155 '../../src/unicode-cache.h', |
| 1154 '../../src/unicode-decoder.cc', | 1156 '../../src/unicode-decoder.cc', |
| 1155 '../../src/unicode-decoder.h', | 1157 '../../src/unicode-decoder.h', |
| 1156 '../../src/utils-inl.h', | 1158 '../../src/utils-inl.h', |
| 1157 '../../src/utils.cc', | 1159 '../../src/utils.cc', |
| 1158 '../../src/utils.h', | 1160 '../../src/utils.h', |
| 1159 '../../src/v8.cc', | 1161 '../../src/v8.cc', |
| 1160 '../../src/v8.h', | 1162 '../../src/v8.h', |
| 1163 '../../src/v8-sampler.cc', |
| 1164 '../../src/v8-tracing-controller.cc', |
| 1161 '../../src/v8memory.h', | 1165 '../../src/v8memory.h', |
| 1162 '../../src/v8threads.cc', | 1166 '../../src/v8threads.cc', |
| 1163 '../../src/v8threads.h', | 1167 '../../src/v8threads.h', |
| 1164 '../../src/vector.h', | 1168 '../../src/vector.h', |
| 1165 '../../src/version.cc', | 1169 '../../src/version.cc', |
| 1166 '../../src/version.h', | 1170 '../../src/version.h', |
| 1167 '../../src/vm-state-inl.h', | 1171 '../../src/vm-state-inl.h', |
| 1168 '../../src/vm-state.h', | 1172 '../../src/vm-state.h', |
| 1169 '../../src/wasm/asm-wasm-builder.cc', | 1173 '../../src/wasm/asm-wasm-builder.cc', |
| 1170 '../../src/wasm/asm-wasm-builder.h', | 1174 '../../src/wasm/asm-wasm-builder.h', |
| (...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2209 }], | 2213 }], |
| 2210 ['want_separate_host_toolset==1', { | 2214 ['want_separate_host_toolset==1', { |
| 2211 'toolsets': ['host'], | 2215 'toolsets': ['host'], |
| 2212 }, { | 2216 }, { |
| 2213 'toolsets': ['target'], | 2217 'toolsets': ['target'], |
| 2214 }], | 2218 }], |
| 2215 ], | 2219 ], |
| 2216 }, | 2220 }, |
| 2217 ], | 2221 ], |
| 2218 } | 2222 } |
| OLD | NEW |