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

Side by Side Diff: src/v8.gyp

Issue 2221853002: Revert of [Tracing] Embed V8 runtime call stats into tracing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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)',
183 ], 182 ],
184 'sources': [ 183 'sources': [
185 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 184 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
186 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 185 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
187 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 186 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
188 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 187 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
189 '<(INTERMEDIATE_DIR)/snapshot.cc', 188 '<(INTERMEDIATE_DIR)/snapshot.cc',
190 ], 189 ],
191 'actions': [ 190 'actions': [
192 { 191 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 ], 230 ],
232 }, 231 },
233 { 232 {
234 'target_name': 'v8_nosnapshot', 233 'target_name': 'v8_nosnapshot',
235 'type': 'static_library', 234 'type': 'static_library',
236 'dependencies': [ 235 'dependencies': [
237 'v8_base', 236 'v8_base',
238 ], 237 ],
239 'include_dirs+': [ 238 'include_dirs+': [
240 '..', 239 '..',
241 '<(DEPTH)',
242 ], 240 ],
243 'sources': [ 241 'sources': [
244 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 242 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
245 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 243 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
246 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 244 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
247 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 245 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
248 'snapshot/snapshot-empty.cc', 246 'snapshot/snapshot-empty.cc',
249 ], 247 ],
250 'conditions': [ 248 'conditions': [
251 ['want_separate_host_toolset==1', { 249 ['want_separate_host_toolset==1', {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'USING_V8_SHARED', 292 'USING_V8_SHARED',
295 ], 293 ],
296 }, 294 },
297 }], 295 }],
298 ], 296 ],
299 'dependencies': [ 297 'dependencies': [
300 'v8_base', 298 'v8_base',
301 ], 299 ],
302 'include_dirs+': [ 300 'include_dirs+': [
303 '..', 301 '..',
304 '<(DEPTH)',
305 ], 302 ],
306 'sources': [ 303 'sources': [
307 'snapshot/natives-external.cc', 304 'snapshot/natives-external.cc',
308 'snapshot/snapshot-external.cc', 305 'snapshot/snapshot-external.cc',
309 ], 306 ],
310 'actions': [ 307 'actions': [
311 { 308 {
312 'action_name': 'run_mksnapshot (external)', 309 'action_name': 'run_mksnapshot (external)',
313 'inputs': [ 310 'inputs': [
314 '<(mksnapshot_exec)', 311 '<(mksnapshot_exec)',
(...skipping 2032 matching lines...) Expand 10 before | Expand all | Expand 10 after
2347 ] 2344 ]
2348 } 2345 }
2349 ] 2346 ]
2350 }, 2347 },
2351 { 2348 {
2352 'target_name': 'mksnapshot', 2349 'target_name': 'mksnapshot',
2353 'type': 'executable', 2350 'type': 'executable',
2354 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], 2351 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'],
2355 'include_dirs+': [ 2352 'include_dirs+': [
2356 '..', 2353 '..',
2357 '<(DEPTH)',
2358 ], 2354 ],
2359 'sources': [ 2355 'sources': [
2360 'snapshot/mksnapshot.cc', 2356 'snapshot/mksnapshot.cc',
2361 ], 2357 ],
2362 'conditions': [ 2358 'conditions': [
2363 ['v8_enable_i18n_support==1', { 2359 ['v8_enable_i18n_support==1', {
2364 'dependencies': [ 2360 'dependencies': [
2365 '<(icu_gyp_path):icui18n', 2361 '<(icu_gyp_path):icui18n',
2366 '<(icu_gyp_path):icuuc', 2362 '<(icu_gyp_path):icuuc',
2367 ] 2363 ]
(...skipping 21 matching lines...) Expand all
2389 'conditions': [ 2385 'conditions': [
2390 ['want_separate_host_toolset_mkpeephole==1', { 2386 ['want_separate_host_toolset_mkpeephole==1', {
2391 'toolsets': ['host'], 2387 'toolsets': ['host'],
2392 }, { 2388 }, {
2393 'toolsets': ['target'], 2389 'toolsets': ['target'],
2394 }], 2390 }],
2395 ], 2391 ],
2396 }, 2392 },
2397 ], 2393 ],
2398 } 2394 }
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