| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 }, | 145 }, |
| 146 }, | 146 }, |
| 147 { | 147 { |
| 148 'target_name': 'v8_snapshot', | 148 'target_name': 'v8_snapshot', |
| 149 'type': '<(library)', | 149 'type': '<(library)', |
| 150 'dependencies': [ | 150 'dependencies': [ |
| 151 'mksnapshot', | 151 'mksnapshot', |
| 152 'js2c', | 152 'js2c', |
| 153 'v8_base', | 153 'v8_base', |
| 154 ], | 154 ], |
| 155 'include_dirs': [ |
| 156 '../../src', |
| 157 ], |
| 155 'sources': [ | 158 'sources': [ |
| 156 '<(SHARED_INTERMEDIATE_DIR)/libraries-empty.cc', | 159 '<(SHARED_INTERMEDIATE_DIR)/libraries-empty.cc', |
| 157 '<(INTERMEDIATE_DIR)/snapshot.cc', | 160 '<(INTERMEDIATE_DIR)/snapshot.cc', |
| 158 ], | 161 ], |
| 159 'actions': [ | 162 'actions': [ |
| 160 { | 163 { |
| 161 'action_name': 'run_mksnapshot', | 164 'action_name': 'run_mksnapshot', |
| 162 'inputs': [ | 165 'inputs': [ |
| 163 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', | 166 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', |
| 164 ], | 167 ], |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 ], | 502 ], |
| 500 }, | 503 }, |
| 501 ], | 504 ], |
| 502 }, | 505 }, |
| 503 { | 506 { |
| 504 'target_name': 'mksnapshot', | 507 'target_name': 'mksnapshot', |
| 505 'type': 'executable', | 508 'type': 'executable', |
| 506 'dependencies': [ | 509 'dependencies': [ |
| 507 'v8_nosnapshot', | 510 'v8_nosnapshot', |
| 508 ], | 511 ], |
| 512 'include_dirs': [ |
| 513 '../../src', |
| 514 ], |
| 509 'sources': [ | 515 'sources': [ |
| 510 '../../src/mksnapshot.cc', | 516 '../../src/mksnapshot.cc', |
| 511 ], | 517 ], |
| 512 } | 518 } |
| 513 ], | 519 ], |
| 514 } | 520 } |
| OLD | NEW |