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

Side by Side Diff: src/v8.gyp

Issue 2137013006: [Tracing] V8 Tracing Controller (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add getter for more attributes of TraceObject Created 4 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
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 1967 matching lines...) Expand 10 before | Expand all | Expand 10 after
1978 }, 1978 },
1979 'dependencies': [ 1979 'dependencies': [
1980 'v8_libbase', 1980 'v8_libbase',
1981 ], 1981 ],
1982 'include_dirs+': [ 1982 'include_dirs+': [
1983 '..', 1983 '..',
1984 '../include', 1984 '../include',
1985 ], 1985 ],
1986 'sources': [ 1986 'sources': [
1987 '../include/libplatform/libplatform.h', 1987 '../include/libplatform/libplatform.h',
1988 '../include/libplatform/v8-tracing.h',
1988 'libplatform/default-platform.cc', 1989 'libplatform/default-platform.cc',
1989 'libplatform/default-platform.h', 1990 'libplatform/default-platform.h',
1990 'libplatform/task-queue.cc', 1991 'libplatform/task-queue.cc',
1991 'libplatform/task-queue.h', 1992 'libplatform/task-queue.h',
1993 'libplatform/tracing/trace-buffer.cc',
1994 'libplatform/tracing/trace-buffer.h',
1995 'libplatform/tracing/trace-config.cc',
1996 'libplatform/tracing/trace-config.h',
1997 'libplatform/tracing/trace-object.cc',
1998 'libplatform/tracing/trace-writer.cc',
1999 'libplatform/tracing/trace-writer.h',
2000 'libplatform/tracing/tracing-controller.cc',
1992 'libplatform/worker-thread.cc', 2001 'libplatform/worker-thread.cc',
1993 'libplatform/worker-thread.h', 2002 'libplatform/worker-thread.h',
1994 ], 2003 ],
1995 'conditions': [ 2004 'conditions': [
1996 ['want_separate_host_toolset==1', { 2005 ['want_separate_host_toolset==1', {
1997 'toolsets': ['host', 'target'], 2006 'toolsets': ['host', 'target'],
1998 }, { 2007 }, {
1999 'toolsets': ['target'], 2008 'toolsets': ['target'],
2000 }], 2009 }],
2001 ], 2010 ],
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 'conditions': [ 2365 'conditions': [
2357 ['want_separate_host_toolset==1', { 2366 ['want_separate_host_toolset==1', {
2358 'toolsets': ['host'], 2367 'toolsets': ['host'],
2359 }, { 2368 }, {
2360 'toolsets': ['target'], 2369 'toolsets': ['target'],
2361 }], 2370 }],
2362 ], 2371 ],
2363 }, 2372 },
2364 ], 2373 ],
2365 } 2374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698