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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 source_set("v8_base") { | 614 source_set("v8_base") { |
615 visibility = [ ":*" ] # Only targets in this file can depend on this. | 615 visibility = [ ":*" ] # Only targets in this file can depend on this. |
616 | 616 |
617 sources = [ | 617 sources = [ |
618 # TODO(fmeawad): This needs to be updated to support standalone V8 builds. | 618 # TODO(fmeawad): This needs to be updated to support standalone V8 builds. |
619 "../base/trace_event/common/trace_event_common.h", | 619 "../base/trace_event/common/trace_event_common.h", |
620 "include/v8-debug.h", | 620 "include/v8-debug.h", |
621 "include/v8-experimental.h", | 621 "include/v8-experimental.h", |
622 "include/v8-platform.h", | 622 "include/v8-platform.h", |
623 "include/v8-profiler.h", | 623 "include/v8-profiler.h", |
| 624 "include/v8-sampler.h", |
624 "include/v8-testing.h", | 625 "include/v8-testing.h", |
| 626 "include/v8-tracing-controller.h", |
625 "include/v8-util.h", | 627 "include/v8-util.h", |
626 "include/v8-version.h", | 628 "include/v8-version.h", |
627 "include/v8.h", | 629 "include/v8.h", |
628 "include/v8config.h", | 630 "include/v8config.h", |
629 "src/accessors.cc", | 631 "src/accessors.cc", |
630 "src/accessors.h", | 632 "src/accessors.h", |
631 "src/address-map.cc", | 633 "src/address-map.cc", |
632 "src/address-map.h", | 634 "src/address-map.h", |
633 "src/allocation.cc", | 635 "src/allocation.cc", |
634 "src/allocation.h", | 636 "src/allocation.h", |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 "src/unicode.h", | 1327 "src/unicode.h", |
1326 "src/unicode-cache-inl.h", | 1328 "src/unicode-cache-inl.h", |
1327 "src/unicode-cache.h", | 1329 "src/unicode-cache.h", |
1328 "src/unicode-decoder.cc", | 1330 "src/unicode-decoder.cc", |
1329 "src/unicode-decoder.h", | 1331 "src/unicode-decoder.h", |
1330 "src/utils-inl.h", | 1332 "src/utils-inl.h", |
1331 "src/utils.cc", | 1333 "src/utils.cc", |
1332 "src/utils.h", | 1334 "src/utils.h", |
1333 "src/v8.cc", | 1335 "src/v8.cc", |
1334 "src/v8.h", | 1336 "src/v8.h", |
| 1337 "src/v8-sampler.cc", |
| 1338 "src/v8-tracing-controller.cc" |
1335 "src/v8memory.h", | 1339 "src/v8memory.h", |
1336 "src/v8threads.cc", | 1340 "src/v8threads.cc", |
1337 "src/v8threads.h", | 1341 "src/v8threads.h", |
1338 "src/version.cc", | 1342 "src/version.cc", |
1339 "src/version.h", | 1343 "src/version.h", |
1340 "src/vm-state-inl.h", | 1344 "src/vm-state-inl.h", |
1341 "src/vm-state.h", | 1345 "src/vm-state.h", |
1342 "src/wasm/asm-wasm-builder.cc", | 1346 "src/wasm/asm-wasm-builder.cc", |
1343 "src/wasm/asm-wasm-builder.h", | 1347 "src/wasm/asm-wasm-builder.h", |
1344 "src/wasm/ast-decoder.cc", | 1348 "src/wasm/ast-decoder.cc", |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1992 ] | 1996 ] |
1993 | 1997 |
1994 configs -= [ "//build/config/compiler:chromium_code" ] | 1998 configs -= [ "//build/config/compiler:chromium_code" ] |
1995 configs += [ "//build/config/compiler:no_chromium_code" ] | 1999 configs += [ "//build/config/compiler:no_chromium_code" ] |
1996 configs += [ | 2000 configs += [ |
1997 ":internal_config", | 2001 ":internal_config", |
1998 ":features", | 2002 ":features", |
1999 ":toolchain", | 2003 ":toolchain", |
2000 ] | 2004 ] |
2001 } | 2005 } |
OLD | NEW |