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

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: Fix GN Build 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
« no previous file with comments | « no previous file | DEPS » ('j') | include/libplatform/v8-tracing.h » ('J')
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 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after
2006 "ws2_32.lib", 2006 "ws2_32.lib",
2007 ] 2007 ]
2008 } 2008 }
2009 2009
2010 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. 2010 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
2011 } 2011 }
2012 2012
2013 v8_source_set("v8_libplatform") { 2013 v8_source_set("v8_libplatform") {
2014 sources = [ 2014 sources = [
2015 "include/libplatform/libplatform.h", 2015 "include/libplatform/libplatform.h",
2016 "include/libplatform/v8-tracing.h",
2016 "src/libplatform/default-platform.cc", 2017 "src/libplatform/default-platform.cc",
2017 "src/libplatform/default-platform.h", 2018 "src/libplatform/default-platform.h",
2019 "src/libplatform/default-tracing-controller.cc",
2018 "src/libplatform/task-queue.cc", 2020 "src/libplatform/task-queue.cc",
2019 "src/libplatform/task-queue.h", 2021 "src/libplatform/task-queue.h",
2022 "src/libplatform/tracing/trace-buffer.cc",
2023 "src/libplatform/tracing/trace-buffer.h",
2024 "src/libplatform/tracing/trace-config.cc",
2025 "src/libplatform/tracing/trace-object.cc",
2026 "src/libplatform/tracing/trace-writer.cc",
2027 "src/libplatform/tracing/trace-writer.h",
2020 "src/libplatform/worker-thread.cc", 2028 "src/libplatform/worker-thread.cc",
2021 "src/libplatform/worker-thread.h", 2029 "src/libplatform/worker-thread.h",
2022 ] 2030 ]
2023 2031
2024 configs = [ ":internal_config_base" ] 2032 configs = [ ":internal_config_base" ]
2025 2033
2026 public_configs = [ ":libplatform_config" ] 2034 public_configs = [ ":libplatform_config" ]
2027 2035
2028 deps = [ 2036 deps = [
2029 ":v8_libbase", 2037 ":v8_libbase",
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
2395 2403
2396 deps = [ 2404 deps = [
2397 ":fuzzer_support", 2405 ":fuzzer_support",
2398 ] 2406 ]
2399 2407
2400 configs = [ ":internal_config" ] 2408 configs = [ ":internal_config" ]
2401 } 2409 }
2402 2410
2403 v8_fuzzer("wasm_asmjs_fuzzer") { 2411 v8_fuzzer("wasm_asmjs_fuzzer") {
2404 } 2412 }
OLDNEW
« no previous file with comments | « no previous file | DEPS » ('j') | include/libplatform/v8-tracing.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698