Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: tools/gyp/v8.gyp

Issue 155219: Correct the location of snapshot.cc in v8.gyp. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 '<(INTERMEDIATE_DIR)/libraries-empty.cc',
157 '../../src/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',
167 ], 167 ],
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698