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

Side by Side Diff: src/v8.gyp

Issue 2187693002: [Tracing] Embed V8 runtime call stats into tracing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix memory leak Created 4 years, 4 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 | « src/tracing/trace-event.cc ('k') | 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 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
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
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
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 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after
2348 ] 2351 ]
2349 } 2352 }
2350 ] 2353 ]
2351 }, 2354 },
2352 { 2355 {
2353 'target_name': 'mksnapshot', 2356 'target_name': 'mksnapshot',
2354 'type': 'executable', 2357 'type': 'executable',
2355 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], 2358 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'],
2356 'include_dirs+': [ 2359 'include_dirs+': [
2357 '..', 2360 '..',
2361 '<(DEPTH)',
2358 ], 2362 ],
2359 'sources': [ 2363 'sources': [
2360 'snapshot/mksnapshot.cc', 2364 'snapshot/mksnapshot.cc',
2361 ], 2365 ],
2362 'conditions': [ 2366 'conditions': [
2363 ['v8_enable_i18n_support==1', { 2367 ['v8_enable_i18n_support==1', {
2364 'dependencies': [ 2368 'dependencies': [
2365 '<(icu_gyp_path):icui18n', 2369 '<(icu_gyp_path):icui18n',
2366 '<(icu_gyp_path):icuuc', 2370 '<(icu_gyp_path):icuuc',
2367 ] 2371 ]
(...skipping 21 matching lines...) Expand all
2389 'conditions': [ 2393 'conditions': [
2390 ['want_separate_host_toolset_mkpeephole==1', { 2394 ['want_separate_host_toolset_mkpeephole==1', {
2391 'toolsets': ['host'], 2395 'toolsets': ['host'],
2392 }, { 2396 }, {
2393 'toolsets': ['target'], 2397 'toolsets': ['target'],
2394 }], 2398 }],
2395 ], 2399 ],
2396 }, 2400 },
2397 ], 2401 ],
2398 } 2402 }
OLDNEW
« no previous file with comments | « src/tracing/trace-event.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698