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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 'USING_V8_SHARED', | 172 'USING_V8_SHARED', |
173 ], | 173 ], |
174 }, | 174 }, |
175 }], | 175 }], |
176 ], | 176 ], |
177 'dependencies': [ | 177 'dependencies': [ |
178 'v8_base', | 178 'v8_base', |
179 ], | 179 ], |
180 'include_dirs+': [ | 180 'include_dirs+': [ |
181 '..', | 181 '..', |
| 182 '<(DEPTH)', |
182 ], | 183 ], |
183 'sources': [ | 184 'sources': [ |
184 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', | 185 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
185 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', | 186 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', |
186 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', | 187 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
187 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', | 188 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
188 '<(INTERMEDIATE_DIR)/snapshot.cc', | 189 '<(INTERMEDIATE_DIR)/snapshot.cc', |
189 ], | 190 ], |
190 'actions': [ | 191 'actions': [ |
191 { | 192 { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 ], | 231 ], |
231 }, | 232 }, |
232 { | 233 { |
233 'target_name': 'v8_nosnapshot', | 234 'target_name': 'v8_nosnapshot', |
234 'type': 'static_library', | 235 'type': 'static_library', |
235 'dependencies': [ | 236 'dependencies': [ |
236 'v8_base', | 237 'v8_base', |
237 ], | 238 ], |
238 'include_dirs+': [ | 239 'include_dirs+': [ |
239 '..', | 240 '..', |
| 241 '<(DEPTH)', |
240 ], | 242 ], |
241 'sources': [ | 243 'sources': [ |
242 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', | 244 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
243 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', | 245 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', |
244 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', | 246 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
245 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', | 247 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
246 'snapshot/snapshot-empty.cc', | 248 'snapshot/snapshot-empty.cc', |
247 ], | 249 ], |
248 'conditions': [ | 250 'conditions': [ |
249 ['want_separate_host_toolset==1', { | 251 ['want_separate_host_toolset==1', { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 'USING_V8_SHARED', | 294 'USING_V8_SHARED', |
293 ], | 295 ], |
294 }, | 296 }, |
295 }], | 297 }], |
296 ], | 298 ], |
297 'dependencies': [ | 299 'dependencies': [ |
298 'v8_base', | 300 'v8_base', |
299 ], | 301 ], |
300 'include_dirs+': [ | 302 'include_dirs+': [ |
301 '..', | 303 '..', |
| 304 '<(DEPTH)', |
302 ], | 305 ], |
303 'sources': [ | 306 'sources': [ |
304 'snapshot/natives-external.cc', | 307 'snapshot/natives-external.cc', |
305 'snapshot/snapshot-external.cc', | 308 'snapshot/snapshot-external.cc', |
306 ], | 309 ], |
307 'actions': [ | 310 'actions': [ |
308 { | 311 { |
309 'action_name': 'run_mksnapshot (external)', | 312 'action_name': 'run_mksnapshot (external)', |
310 'inputs': [ | 313 'inputs': [ |
311 '<(mksnapshot_exec)', | 314 '<(mksnapshot_exec)', |
(...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2342 ] | 2345 ] |
2343 } | 2346 } |
2344 ] | 2347 ] |
2345 }, | 2348 }, |
2346 { | 2349 { |
2347 'target_name': 'mksnapshot', | 2350 'target_name': 'mksnapshot', |
2348 'type': 'executable', | 2351 'type': 'executable', |
2349 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], | 2352 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], |
2350 'include_dirs+': [ | 2353 'include_dirs+': [ |
2351 '..', | 2354 '..', |
| 2355 '<(DEPTH)', |
2352 ], | 2356 ], |
2353 'sources': [ | 2357 'sources': [ |
2354 'snapshot/mksnapshot.cc', | 2358 'snapshot/mksnapshot.cc', |
2355 ], | 2359 ], |
2356 'conditions': [ | 2360 'conditions': [ |
2357 ['v8_enable_i18n_support==1', { | 2361 ['v8_enable_i18n_support==1', { |
2358 'dependencies': [ | 2362 'dependencies': [ |
2359 '<(icu_gyp_path):icui18n', | 2363 '<(icu_gyp_path):icui18n', |
2360 '<(icu_gyp_path):icuuc', | 2364 '<(icu_gyp_path):icuuc', |
2361 ] | 2365 ] |
(...skipping 21 matching lines...) Expand all Loading... |
2383 'conditions': [ | 2387 'conditions': [ |
2384 ['want_separate_host_toolset_mkpeephole==1', { | 2388 ['want_separate_host_toolset_mkpeephole==1', { |
2385 'toolsets': ['host'], | 2389 'toolsets': ['host'], |
2386 }, { | 2390 }, { |
2387 'toolsets': ['target'], | 2391 'toolsets': ['target'], |
2388 }], | 2392 }], |
2389 ], | 2393 ], |
2390 }, | 2394 }, |
2391 ], | 2395 ], |
2392 } | 2396 } |
OLD | NEW |