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

Side by Side Diff: BUILD.gn

Issue 2137013006: [Tracing] V8 Tracing Controller (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add Setters for TraceConfig categories 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 | « no previous file | include/libplatform/libplatform.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 2094 matching lines...) Expand 10 before | Expand all | Expand 10 after
2105 "ws2_32.lib", 2105 "ws2_32.lib",
2106 ] 2106 ]
2107 } 2107 }
2108 2108
2109 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. 2109 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
2110 } 2110 }
2111 2111
2112 v8_source_set("v8_libplatform") { 2112 v8_source_set("v8_libplatform") {
2113 sources = [ 2113 sources = [
2114 "include/libplatform/libplatform.h", 2114 "include/libplatform/libplatform.h",
2115 "include/libplatform/v8-tracing.h",
2115 "src/libplatform/default-platform.cc", 2116 "src/libplatform/default-platform.cc",
2116 "src/libplatform/default-platform.h", 2117 "src/libplatform/default-platform.h",
2117 "src/libplatform/task-queue.cc", 2118 "src/libplatform/task-queue.cc",
2118 "src/libplatform/task-queue.h", 2119 "src/libplatform/task-queue.h",
2120 "src/libplatform/tracing/trace-buffer.cc",
2121 "src/libplatform/tracing/trace-buffer.h",
2122 "src/libplatform/tracing/trace-config.cc",
2123 "src/libplatform/tracing/trace-object.cc",
2124 "src/libplatform/tracing/trace-writer.cc",
2125 "src/libplatform/tracing/trace-writer.h",
2126 "src/libplatform/tracing/tracing-controller.cc",
2119 "src/libplatform/worker-thread.cc", 2127 "src/libplatform/worker-thread.cc",
2120 "src/libplatform/worker-thread.h", 2128 "src/libplatform/worker-thread.h",
2121 ] 2129 ]
2122 2130
2123 configs = [ ":internal_config_base" ] 2131 configs = [ ":internal_config_base" ]
2124 2132
2125 public_configs = [ ":libplatform_config" ] 2133 public_configs = [ ":libplatform_config" ]
2126 2134
2127 deps = [ 2135 deps = [
2128 ":v8_libbase", 2136 ":v8_libbase",
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
2519 2527
2520 deps = [ 2528 deps = [
2521 ":fuzzer_support", 2529 ":fuzzer_support",
2522 ] 2530 ]
2523 2531
2524 configs = [ ":internal_config" ] 2532 configs = [ ":internal_config" ]
2525 } 2533 }
2526 2534
2527 v8_fuzzer("wasm_asmjs_fuzzer") { 2535 v8_fuzzer("wasm_asmjs_fuzzer") {
2528 } 2536 }
OLDNEW
« no previous file with comments | « no previous file | include/libplatform/libplatform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698