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

Side by Side Diff: src/v8.gyp

Issue 2183923004: Reland [Tracing] V8 Tracing Controller (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix CHECK_EQ undefined behavior in test-tracing to be determinstic 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/libplatform/tracing/tracing-controller.cc ('k') | test/cctest/cctest.gyp » ('j') | 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 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after
1997 }, 1997 },
1998 'dependencies': [ 1998 'dependencies': [
1999 'v8_libbase', 1999 'v8_libbase',
2000 ], 2000 ],
2001 'include_dirs+': [ 2001 'include_dirs+': [
2002 '..', 2002 '..',
2003 '../include', 2003 '../include',
2004 ], 2004 ],
2005 'sources': [ 2005 'sources': [
2006 '../include/libplatform/libplatform.h', 2006 '../include/libplatform/libplatform.h',
2007 '../include/libplatform/v8-tracing.h',
2007 'libplatform/default-platform.cc', 2008 'libplatform/default-platform.cc',
2008 'libplatform/default-platform.h', 2009 'libplatform/default-platform.h',
2009 'libplatform/task-queue.cc', 2010 'libplatform/task-queue.cc',
2010 'libplatform/task-queue.h', 2011 'libplatform/task-queue.h',
2012 'libplatform/tracing/trace-buffer.cc',
2013 'libplatform/tracing/trace-buffer.h',
2014 'libplatform/tracing/trace-config.cc',
2015 'libplatform/tracing/trace-object.cc',
2016 'libplatform/tracing/trace-writer.cc',
2017 'libplatform/tracing/trace-writer.h',
2018 'libplatform/tracing/tracing-controller.cc',
2011 'libplatform/worker-thread.cc', 2019 'libplatform/worker-thread.cc',
2012 'libplatform/worker-thread.h', 2020 'libplatform/worker-thread.h',
2013 ], 2021 ],
2014 'conditions': [ 2022 'conditions': [
2015 ['want_separate_host_toolset==1', { 2023 ['want_separate_host_toolset==1', {
2016 'toolsets': ['host', 'target'], 2024 'toolsets': ['host', 'target'],
2017 }, { 2025 }, {
2018 'toolsets': ['target'], 2026 'toolsets': ['target'],
2019 }], 2027 }],
2020 ], 2028 ],
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
2375 'conditions': [ 2383 'conditions': [
2376 ['want_separate_host_toolset_mkpeephole==1', { 2384 ['want_separate_host_toolset_mkpeephole==1', {
2377 'toolsets': ['host'], 2385 'toolsets': ['host'],
2378 }, { 2386 }, {
2379 'toolsets': ['target'], 2387 'toolsets': ['target'],
2380 }], 2388 }],
2381 ], 2389 ],
2382 }, 2390 },
2383 ], 2391 ],
2384 } 2392 }
OLDNEW
« no previous file with comments | « src/libplatform/tracing/tracing-controller.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698