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

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

Issue 149331: Fix missing include directories 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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