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

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: Start/StopTracing + TestTracingController 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 1923 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 }, 1934 },
1935 'dependencies': [ 1935 'dependencies': [
1936 'v8_libbase', 1936 'v8_libbase',
1937 ], 1937 ],
1938 'include_dirs+': [ 1938 'include_dirs+': [
1939 '..', 1939 '..',
1940 '../include', 1940 '../include',
1941 ], 1941 ],
1942 'sources': [ 1942 'sources': [
1943 '../include/libplatform/libplatform.h', 1943 '../include/libplatform/libplatform.h',
1944 '../include/libplatform/v8-tracing.h',
1944 'libplatform/default-platform.cc', 1945 'libplatform/default-platform.cc',
1945 'libplatform/default-platform.h', 1946 'libplatform/default-platform.h',
1946 'libplatform/task-queue.cc', 1947 'libplatform/task-queue.cc',
1947 'libplatform/task-queue.h', 1948 'libplatform/task-queue.h',
1949 'libplatform/tracing/trace-buffer.cc',
1950 'libplatform/tracing/trace-buffer.h',
1951 'libplatform/tracing/trace-config.cc',
1952 'libplatform/tracing/trace-config.h',
1953 'libplatform/tracing/trace-object.cc',
1954 'libplatform/tracing/trace-writer.cc',
1955 'libplatform/tracing/trace-writer.h',
1956 'libplatform/tracing/tracing-controller.cc',
1948 'libplatform/worker-thread.cc', 1957 'libplatform/worker-thread.cc',
1949 'libplatform/worker-thread.h', 1958 'libplatform/worker-thread.h',
1950 ], 1959 ],
1951 'conditions': [ 1960 'conditions': [
1952 ['want_separate_host_toolset==1', { 1961 ['want_separate_host_toolset==1', {
1953 'toolsets': ['host', 'target'], 1962 'toolsets': ['host', 'target'],
1954 }, { 1963 }, {
1955 'toolsets': ['target'], 1964 'toolsets': ['target'],
1956 }], 1965 }],
1957 ], 1966 ],
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
2291 }], 2300 }],
2292 ['want_separate_host_toolset==1', { 2301 ['want_separate_host_toolset==1', {
2293 'toolsets': ['host'], 2302 'toolsets': ['host'],
2294 }, { 2303 }, {
2295 'toolsets': ['target'], 2304 'toolsets': ['target'],
2296 }], 2305 }],
2297 ], 2306 ],
2298 }, 2307 },
2299 ], 2308 ],
2300 } 2309 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698