| 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 2095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2106 "winmm.lib", | 2106 "winmm.lib", |
| 2107 "ws2_32.lib", | 2107 "ws2_32.lib", |
| 2108 ] | 2108 ] |
| 2109 } | 2109 } |
| 2110 | 2110 |
| 2111 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. | 2111 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. |
| 2112 } | 2112 } |
| 2113 | 2113 |
| 2114 v8_source_set("v8_libplatform") { | 2114 v8_source_set("v8_libplatform") { |
| 2115 sources = [ | 2115 sources = [ |
| 2116 "//base/trace_event/common/trace_event_common.h", |
| 2116 "include/libplatform/libplatform.h", | 2117 "include/libplatform/libplatform.h", |
| 2117 "include/libplatform/v8-tracing.h", | 2118 "include/libplatform/v8-tracing.h", |
| 2118 "src/libplatform/default-platform.cc", | 2119 "src/libplatform/default-platform.cc", |
| 2119 "src/libplatform/default-platform.h", | 2120 "src/libplatform/default-platform.h", |
| 2120 "src/libplatform/task-queue.cc", | 2121 "src/libplatform/task-queue.cc", |
| 2121 "src/libplatform/task-queue.h", | 2122 "src/libplatform/task-queue.h", |
| 2122 "src/libplatform/tracing/trace-buffer.cc", | 2123 "src/libplatform/tracing/trace-buffer.cc", |
| 2123 "src/libplatform/tracing/trace-buffer.h", | 2124 "src/libplatform/tracing/trace-buffer.h", |
| 2124 "src/libplatform/tracing/trace-config.cc", | 2125 "src/libplatform/tracing/trace-config.cc", |
| 2125 "src/libplatform/tracing/trace-object.cc", | 2126 "src/libplatform/tracing/trace-object.cc", |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2529 | 2530 |
| 2530 deps = [ | 2531 deps = [ |
| 2531 ":fuzzer_support", | 2532 ":fuzzer_support", |
| 2532 ] | 2533 ] |
| 2533 | 2534 |
| 2534 configs = [ ":internal_config" ] | 2535 configs = [ ":internal_config" ] |
| 2535 } | 2536 } |
| 2536 | 2537 |
| 2537 v8_fuzzer("wasm_asmjs_fuzzer") { | 2538 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2538 } | 2539 } |
| OLD | NEW |