| 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 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 ":features", | 529 ":features", |
| 530 ":toolchain", | 530 ":toolchain", |
| 531 ] | 531 ] |
| 532 } | 532 } |
| 533 } | 533 } |
| 534 | 534 |
| 535 source_set("v8_base") { | 535 source_set("v8_base") { |
| 536 visibility = [ ":*" ] # Only targets in this file can depend on this. | 536 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 537 | 537 |
| 538 sources = [ | 538 sources = [ |
| 539 "../../include/v8-debug.h", | 539 "include/v8-debug.h", |
| 540 "../../include/v8-platform.h", | 540 "include/v8-platform.h", |
| 541 "../../include/v8-profiler.h", | 541 "include/v8-profiler.h", |
| 542 "../../include/v8-testing.h", | 542 "include/v8-testing.h", |
| 543 "../../include/v8-util.h", | 543 "include/v8-util.h", |
| 544 "../../include/v8-version.h", | 544 "include/v8-version.h", |
| 545 "../../include/v8.h", | 545 "include/v8.h", |
| 546 "../../include/v8config.h", | 546 "include/v8config.h", |
| 547 "src/accessors.cc", | 547 "src/accessors.cc", |
| 548 "src/accessors.h", | 548 "src/accessors.h", |
| 549 "src/allocation.cc", | 549 "src/allocation.cc", |
| 550 "src/allocation.h", | 550 "src/allocation.h", |
| 551 "src/allocation-site-scopes.cc", | 551 "src/allocation-site-scopes.cc", |
| 552 "src/allocation-site-scopes.h", | 552 "src/allocation-site-scopes.h", |
| 553 "src/allocation-tracker.cc", | 553 "src/allocation-tracker.cc", |
| 554 "src/allocation-tracker.h", | 554 "src/allocation-tracker.h", |
| 555 "src/api.cc", | 555 "src/api.cc", |
| 556 "src/api.h", | 556 "src/api.h", |
| (...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 "src/d8-debug.cc", | 1704 "src/d8-debug.cc", |
| 1705 "src/d8-debug.h", | 1705 "src/d8-debug.h", |
| 1706 "$target_gen_dir/d8-js.cc", | 1706 "$target_gen_dir/d8-js.cc", |
| 1707 ] | 1707 ] |
| 1708 } | 1708 } |
| 1709 if (v8_enable_i18n_support) { | 1709 if (v8_enable_i18n_support) { |
| 1710 deps += [ "//third_party/icu" ] | 1710 deps += [ "//third_party/icu" ] |
| 1711 } | 1711 } |
| 1712 } | 1712 } |
| 1713 } | 1713 } |
| OLD | NEW |