| 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/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 ":features", | 588 ":features", |
| 589 ":toolchain", | 589 ":toolchain", |
| 590 ] | 590 ] |
| 591 } | 591 } |
| 592 } | 592 } |
| 593 | 593 |
| 594 source_set("v8_base") { | 594 source_set("v8_base") { |
| 595 visibility = [ ":*" ] # Only targets in this file can depend on this. | 595 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 596 | 596 |
| 597 sources = [ | 597 sources = [ |
| 598 # TODO(fmeawad): This needs to be updated to support standalone V8 builds. |
| 599 "../base/trace_event/common/trace_event_common.h", |
| 598 "include/v8-debug.h", | 600 "include/v8-debug.h", |
| 599 "include/v8-experimental.h", | 601 "include/v8-experimental.h", |
| 600 "include/v8-platform.h", | 602 "include/v8-platform.h", |
| 601 "include/v8-profiler.h", | 603 "include/v8-profiler.h", |
| 602 "include/v8-testing.h", | 604 "include/v8-testing.h", |
| 603 "include/v8-util.h", | 605 "include/v8-util.h", |
| 604 "include/v8-version.h", | 606 "include/v8-version.h", |
| 605 "include/v8.h", | 607 "include/v8.h", |
| 606 "include/v8config.h", | 608 "include/v8config.h", |
| 607 "src/accessors.cc", | 609 "src/accessors.cc", |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 "src/snapshot/snapshot.h", | 1242 "src/snapshot/snapshot.h", |
| 1241 "src/startup-data-util.h", | 1243 "src/startup-data-util.h", |
| 1242 "src/startup-data-util.cc", | 1244 "src/startup-data-util.cc", |
| 1243 "src/string-builder.cc", | 1245 "src/string-builder.cc", |
| 1244 "src/string-builder.h", | 1246 "src/string-builder.h", |
| 1245 "src/string-search.h", | 1247 "src/string-search.h", |
| 1246 "src/string-stream.cc", | 1248 "src/string-stream.cc", |
| 1247 "src/string-stream.h", | 1249 "src/string-stream.h", |
| 1248 "src/strtod.cc", | 1250 "src/strtod.cc", |
| 1249 "src/strtod.h", | 1251 "src/strtod.h", |
| 1252 "src/tracing/trace-event.cc", |
| 1253 "src/tracing/trace-event.h", |
| 1250 "src/transitions-inl.h", | 1254 "src/transitions-inl.h", |
| 1251 "src/transitions.cc", | 1255 "src/transitions.cc", |
| 1252 "src/transitions.h", | 1256 "src/transitions.h", |
| 1253 "src/type-cache.cc", | 1257 "src/type-cache.cc", |
| 1254 "src/type-cache.h", | 1258 "src/type-cache.h", |
| 1255 "src/type-feedback-vector-inl.h", | 1259 "src/type-feedback-vector-inl.h", |
| 1256 "src/type-feedback-vector.cc", | 1260 "src/type-feedback-vector.cc", |
| 1257 "src/type-feedback-vector.h", | 1261 "src/type-feedback-vector.h", |
| 1258 "src/type-info.cc", | 1262 "src/type-info.cc", |
| 1259 "src/type-info.h", | 1263 "src/type-info.h", |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1851 if (!is_component_build) { | 1855 if (!is_component_build) { |
| 1852 sources += [ | 1856 sources += [ |
| 1853 "$target_gen_dir/d8-js.cc", | 1857 "$target_gen_dir/d8-js.cc", |
| 1854 ] | 1858 ] |
| 1855 } | 1859 } |
| 1856 if (v8_enable_i18n_support) { | 1860 if (v8_enable_i18n_support) { |
| 1857 deps += [ "//third_party/icu" ] | 1861 deps += [ "//third_party/icu" ] |
| 1858 } | 1862 } |
| 1859 } | 1863 } |
| 1860 } | 1864 } |
| OLD | NEW |