| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'inputs': [ | 204 'inputs': [ |
| 205 '<(mksnapshot_exec)', | 205 '<(mksnapshot_exec)', |
| 206 '<(embed_script)', | 206 '<(embed_script)', |
| 207 ], | 207 ], |
| 208 'outputs': [ | 208 'outputs': [ |
| 209 '<(INTERMEDIATE_DIR)/snapshot.cc', | 209 '<(INTERMEDIATE_DIR)/snapshot.cc', |
| 210 ], | 210 ], |
| 211 'variables': { | 211 'variables': { |
| 212 'mksnapshot_flags': [ | 212 'mksnapshot_flags': [ |
| 213 '--log-snapshot-positions', | 213 '--log-snapshot-positions', |
| 214 '--logfile', '<(INTERMEDIATE_DIR)/snapshot.log', | |
| 215 ], | 214 ], |
| 216 'conditions': [ | 215 'conditions': [ |
| 217 ['v8_random_seed!=0', { | 216 ['v8_random_seed!=0', { |
| 218 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], | 217 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], |
| 219 }], | 218 }], |
| 220 ['v8_vector_stores!=0', { | 219 ['v8_vector_stores!=0', { |
| 221 'mksnapshot_flags': ['--vector-stores'], | 220 'mksnapshot_flags': ['--vector-stores'], |
| 222 }], | 221 }], |
| 223 ], | 222 ], |
| 224 }, | 223 }, |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 'actions': [ | 301 'actions': [ |
| 303 { | 302 { |
| 304 'action_name': 'run_mksnapshot (ignition)', | 303 'action_name': 'run_mksnapshot (ignition)', |
| 305 'inputs': ['<(mksnapshot_exec)'], | 304 'inputs': ['<(mksnapshot_exec)'], |
| 306 'variables': { | 305 'variables': { |
| 307 # TODO: Extract common mksnapshot_flags to a separate | 306 # TODO: Extract common mksnapshot_flags to a separate |
| 308 # variable. | 307 # variable. |
| 309 'mksnapshot_flags_ignition': [ | 308 'mksnapshot_flags_ignition': [ |
| 310 '--ignition', | 309 '--ignition', |
| 311 '--log-snapshot-positions', | 310 '--log-snapshot-positions', |
| 312 '--logfile', '<(INTERMEDIATE_DIR)/snapshot_ignition.log', | |
| 313 ], | 311 ], |
| 314 'conditions': [ | 312 'conditions': [ |
| 315 ['v8_random_seed!=0', { | 313 ['v8_random_seed!=0', { |
| 316 'mksnapshot_flags_ignition': ['--random-seed', '<(v8_ran
dom_seed)'], | 314 'mksnapshot_flags_ignition': ['--random-seed', '<(v8_ran
dom_seed)'], |
| 317 }], | 315 }], |
| 318 ['v8_vector_stores!=0', { | 316 ['v8_vector_stores!=0', { |
| 319 'mksnapshot_flags_ignition': ['--vector-stores'], | 317 'mksnapshot_flags_ignition': ['--vector-stores'], |
| 320 }], | 318 }], |
| 321 ], | 319 ], |
| 322 }, | 320 }, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 '../../src/snapshot/natives-external.cc', | 363 '../../src/snapshot/natives-external.cc', |
| 366 '../../src/snapshot/snapshot-external.cc', | 364 '../../src/snapshot/snapshot-external.cc', |
| 367 ], | 365 ], |
| 368 'actions': [ | 366 'actions': [ |
| 369 { | 367 { |
| 370 'action_name': 'run_mksnapshot (external)', | 368 'action_name': 'run_mksnapshot (external)', |
| 371 'inputs': ['<(mksnapshot_exec)'], | 369 'inputs': ['<(mksnapshot_exec)'], |
| 372 'variables': { | 370 'variables': { |
| 373 'mksnapshot_flags': [ | 371 'mksnapshot_flags': [ |
| 374 '--log-snapshot-positions', | 372 '--log-snapshot-positions', |
| 375 '--logfile', '<(INTERMEDIATE_DIR)/snapshot.log', | |
| 376 ], | 373 ], |
| 377 'conditions': [ | 374 'conditions': [ |
| 378 ['v8_random_seed!=0', { | 375 ['v8_random_seed!=0', { |
| 379 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], | 376 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], |
| 380 }], | 377 }], |
| 381 ['v8_vector_stores!=0', { | 378 ['v8_vector_stores!=0', { |
| 382 'mksnapshot_flags': ['--vector-stores'], | 379 'mksnapshot_flags': ['--vector-stores'], |
| 383 }], | 380 }], |
| 384 ], | 381 ], |
| 385 }, | 382 }, |
| (...skipping 1879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2265 }], | 2262 }], |
| 2266 ['want_separate_host_toolset==1', { | 2263 ['want_separate_host_toolset==1', { |
| 2267 'toolsets': ['host'], | 2264 'toolsets': ['host'], |
| 2268 }, { | 2265 }, { |
| 2269 'toolsets': ['target'], | 2266 'toolsets': ['target'], |
| 2270 }], | 2267 }], |
| 2271 ], | 2268 ], |
| 2272 }, | 2269 }, |
| 2273 ], | 2270 ], |
| 2274 } | 2271 } |
| OLD | NEW |