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 2060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2071 "ws2_32.lib", | 2071 "ws2_32.lib", |
2072 ] | 2072 ] |
2073 } | 2073 } |
2074 | 2074 |
2075 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. | 2075 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. |
2076 } | 2076 } |
2077 | 2077 |
2078 v8_source_set("v8_libplatform") { | 2078 v8_source_set("v8_libplatform") { |
2079 sources = [ | 2079 sources = [ |
2080 "include/libplatform/libplatform.h", | 2080 "include/libplatform/libplatform.h", |
| 2081 "include/libplatform/v8-tracing.h", |
2081 "src/libplatform/default-platform.cc", | 2082 "src/libplatform/default-platform.cc", |
2082 "src/libplatform/default-platform.h", | 2083 "src/libplatform/default-platform.h", |
2083 "src/libplatform/task-queue.cc", | 2084 "src/libplatform/task-queue.cc", |
2084 "src/libplatform/task-queue.h", | 2085 "src/libplatform/task-queue.h", |
| 2086 "src/libplatform/tracing/trace-buffer.cc", |
| 2087 "src/libplatform/tracing/trace-buffer.h", |
| 2088 "src/libplatform/tracing/trace-config.cc", |
| 2089 "src/libplatform/tracing/trace-object.cc", |
| 2090 "src/libplatform/tracing/trace-writer.cc", |
| 2091 "src/libplatform/tracing/trace-writer.h", |
| 2092 "src/libplatform/tracing/tracing-controller.cc", |
2085 "src/libplatform/worker-thread.cc", | 2093 "src/libplatform/worker-thread.cc", |
2086 "src/libplatform/worker-thread.h", | 2094 "src/libplatform/worker-thread.h", |
2087 ] | 2095 ] |
2088 | 2096 |
2089 configs = [ ":internal_config_base" ] | 2097 configs = [ ":internal_config_base" ] |
2090 | 2098 |
2091 public_configs = [ ":libplatform_config" ] | 2099 public_configs = [ ":libplatform_config" ] |
2092 | 2100 |
2093 deps = [ | 2101 deps = [ |
2094 ":v8_libbase", | 2102 ":v8_libbase", |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2485 | 2493 |
2486 deps = [ | 2494 deps = [ |
2487 ":fuzzer_support", | 2495 ":fuzzer_support", |
2488 ] | 2496 ] |
2489 | 2497 |
2490 configs = [ ":internal_config" ] | 2498 configs = [ ":internal_config" ] |
2491 } | 2499 } |
2492 | 2500 |
2493 v8_fuzzer("wasm_asmjs_fuzzer") { | 2501 v8_fuzzer("wasm_asmjs_fuzzer") { |
2494 } | 2502 } |
OLD | NEW |