OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |