| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'sources': [ | 155 'sources': [ |
| 156 '<(INTERMEDIATE_DIR)/libraries-empty.cc', | 156 '<(SHARED_INTERMEDIATE_DIR)/libraries-empty.cc', |
| 157 '<(INTERMEDIATE_DIR)/snapshot.cc', | 157 '<(INTERMEDIATE_DIR)/snapshot.cc', |
| 158 ], | 158 ], |
| 159 'actions': [ | 159 'actions': [ |
| 160 { | 160 { |
| 161 'action_name': 'run_mksnapshot', | 161 'action_name': 'run_mksnapshot', |
| 162 'inputs': [ | 162 'inputs': [ |
| 163 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', | 163 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', |
| 164 ], | 164 ], |
| 165 'outputs': [ | 165 'outputs': [ |
| 166 '<(INTERMEDIATE_DIR)/snapshot.cc', | 166 '<(INTERMEDIATE_DIR)/snapshot.cc', |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 'type': 'executable', | 505 'type': 'executable', |
| 506 'dependencies': [ | 506 'dependencies': [ |
| 507 'v8_nosnapshot', | 507 'v8_nosnapshot', |
| 508 ], | 508 ], |
| 509 'sources': [ | 509 'sources': [ |
| 510 '../../src/mksnapshot.cc', | 510 '../../src/mksnapshot.cc', |
| 511 ], | 511 ], |
| 512 } | 512 } |
| 513 ], | 513 ], |
| 514 } | 514 } |
| OLD | NEW |