| 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 2086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2097 "ws2_32.lib", | 2097 "ws2_32.lib", |
| 2098 ] | 2098 ] |
| 2099 } | 2099 } |
| 2100 | 2100 |
| 2101 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. | 2101 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. |
| 2102 } | 2102 } |
| 2103 | 2103 |
| 2104 v8_source_set("v8_libplatform") { | 2104 v8_source_set("v8_libplatform") { |
| 2105 sources = [ | 2105 sources = [ |
| 2106 "include/libplatform/libplatform.h", | 2106 "include/libplatform/libplatform.h", |
| 2107 "include/libplatform/v8-tracing.h", |
| 2107 "src/libplatform/default-platform.cc", | 2108 "src/libplatform/default-platform.cc", |
| 2108 "src/libplatform/default-platform.h", | 2109 "src/libplatform/default-platform.h", |
| 2109 "src/libplatform/task-queue.cc", | 2110 "src/libplatform/task-queue.cc", |
| 2110 "src/libplatform/task-queue.h", | 2111 "src/libplatform/task-queue.h", |
| 2112 "src/libplatform/tracing/trace-buffer.cc", |
| 2113 "src/libplatform/tracing/trace-buffer.h", |
| 2114 "src/libplatform/tracing/trace-config.cc", |
| 2115 "src/libplatform/tracing/trace-object.cc", |
| 2116 "src/libplatform/tracing/trace-writer.cc", |
| 2117 "src/libplatform/tracing/trace-writer.h", |
| 2118 "src/libplatform/tracing/tracing-controller.cc", |
| 2111 "src/libplatform/worker-thread.cc", | 2119 "src/libplatform/worker-thread.cc", |
| 2112 "src/libplatform/worker-thread.h", | 2120 "src/libplatform/worker-thread.h", |
| 2113 ] | 2121 ] |
| 2114 | 2122 |
| 2115 configs = [ ":internal_config_base" ] | 2123 configs = [ ":internal_config_base" ] |
| 2116 | 2124 |
| 2117 public_configs = [ ":libplatform_config" ] | 2125 public_configs = [ ":libplatform_config" ] |
| 2118 | 2126 |
| 2119 deps = [ | 2127 deps = [ |
| 2120 ":v8_libbase", | 2128 ":v8_libbase", |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2511 | 2519 |
| 2512 deps = [ | 2520 deps = [ |
| 2513 ":fuzzer_support", | 2521 ":fuzzer_support", |
| 2514 ] | 2522 ] |
| 2515 | 2523 |
| 2516 configs = [ ":internal_config" ] | 2524 configs = [ ":internal_config" ] |
| 2517 } | 2525 } |
| 2518 | 2526 |
| 2519 v8_fuzzer("wasm_asmjs_fuzzer") { | 2527 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2520 } | 2528 } |
| OLD | NEW |