| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,6 +24,21 @@ | |||
| 24 | 24 | ||
| 25 | 25 | python_version: "2.7" | |
| 26 | 26 | ||
| 27 | + # The default set of platforms vpython checks does not yet include mac-arm64. | ||
| 28 | + # Setting `verify_pep425_tag` to the list of platforms we explicitly must support | ||
| 29 | + # allows us to ensure that vpython specs stay mac-arm64-friendly | ||
| 30 | + verify_pep425_tag: [ | ||
| 31 | + {python: "cp27", abi: "cp27mu", platform: "manylinux1_x86_64"}, | ||
| 32 | + {python: "cp27", abi: "cp27mu", platform: "linux_arm64"}, | ||
| 33 | + {python: "cp27", abi: "cp27mu", platform: "linux_armv6l"}, | ||
| 34 | + | ||
| 35 | + {python: "cp27", abi: "cp27m", platform: "macosx_10_10_intel"}, | ||
| 36 | + {python: "cp27", abi: "cp27m", platform: "macosx_11_0_arm64"}, | ||
| 37 | + | ||
| 38 | + {python: "cp27", abi: "cp27m", platform: "win32"}, | ||
| 39 | + {python: "cp27", abi: "cp27m", platform: "win_amd64"} | ||
| 40 | + ] | ||
| 41 | + | ||
| 27 | 42 | # Needed by third_party/catapult/devil/devil, which is imported by | |
| 28 | 43 | # build/android/test_runner.py when running performance tests. | |
| 29 | 44 | wheel: < | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -165,7 +165,6 @@ config_setting( | |||
| 165 | 165 | # v8_control_flow_integrity | |
| 166 | 166 | # v8_enable_virtual_memory_cage | |
| 167 | 167 | # cppgc_enable_caged_heap | |
| 168 | - # cppgc_enable_check_assignments_in_prefinalizers | ||
| 169 | 168 | # cppgc_enable_object_names | |
| 170 | 169 | # cppgc_enable_verify_heap | |
| 171 | 170 | # cppgc_enable_young_generation | |
@@ -894,6 +893,8 @@ filegroup( | |||
| 894 | 893 | "src/torque/instance-type-generator.cc", | |
| 895 | 894 | "src/torque/instructions.cc", | |
| 896 | 895 | "src/torque/instructions.h", | |
| 896 | + "src/torque/kythe-data.cc", | ||
| 897 | + "src/torque/kythe-data.h", | ||
| 897 | 898 | "src/torque/parameter-difference.h", | |
| 898 | 899 | "src/torque/server-data.cc", | |
| 899 | 900 | "src/torque/server-data.h", | |
@@ -1218,6 +1219,7 @@ filegroup( | |||
| 1218 | 1219 | "src/flags/flag-definitions.h", | |
| 1219 | 1220 | "src/flags/flags.cc", | |
| 1220 | 1221 | "src/flags/flags.h", | |
| 1222 | + "src/handles/global-handles-inl.h", | ||
| 1221 | 1223 | "src/handles/global-handles.cc", | |
| 1222 | 1224 | "src/handles/global-handles.h", | |
| 1223 | 1225 | "src/handles/handles-inl.h", | |
@@ -1588,6 +1590,7 @@ filegroup( | |||
| 1588 | 1590 | "src/objects/lookup-inl.h", | |
| 1589 | 1591 | "src/objects/lookup.cc", | |
| 1590 | 1592 | "src/objects/lookup.h", | |
| 1593 | + "src/objects/managed-inl.h", | ||
| 1591 | 1594 | "src/objects/managed.cc", | |
| 1592 | 1595 | "src/objects/managed.h", | |
| 1593 | 1596 | "src/objects/map-inl.h", | |
@@ -1619,6 +1622,8 @@ filegroup( | |||
| 1619 | 1622 | "src/objects/objects-definitions.h", | |
| 1620 | 1623 | "src/objects/oddball-inl.h", | |
| 1621 | 1624 | "src/objects/oddball.h", | |
| 1625 | + "src/objects/option-utils.h", | ||
| 1626 | + "src/objects/option-utils.cc", | ||
| 1622 | 1627 | "src/objects/ordered-hash-table-inl.h", | |
| 1623 | 1628 | "src/objects/ordered-hash-table.cc", | |
| 1624 | 1629 | "src/objects/ordered-hash-table.h", | |
@@ -1708,6 +1713,7 @@ filegroup( | |||
| 1708 | 1713 | "src/objects/value-serializer.cc", | |
| 1709 | 1714 | "src/objects/value-serializer.h", | |
| 1710 | 1715 | "src/objects/visitors.cc", | |
| 1716 | + "src/objects/visitors-inl.h", | ||
| 1711 | 1717 | "src/objects/visitors.h", | |
| 1712 | 1718 | "src/parsing/expression-scope.h", | |
| 1713 | 1719 | "src/parsing/func-name-inferrer.cc", | |
@@ -2727,6 +2733,7 @@ filegroup( | |||
| 2727 | 2733 | "src/bigint/bigint-internal.cc", | |
| 2728 | 2734 | "src/bigint/bigint-internal.h", | |
| 2729 | 2735 | "src/bigint/bigint.h", | |
| 2736 | + "src/bigint/bitwise.cc", | ||
| 2730 | 2737 | "src/bigint/digit-arithmetic.h", | |
| 2731 | 2738 | "src/bigint/div-barrett.cc", | |
| 2732 | 2739 | "src/bigint/div-burnikel.cc", | |
@@ -2909,11 +2916,11 @@ v8_torque( | |||
| 2909 | 2916 | "exported-macros-assembler.h", | |
| 2910 | 2917 | "factory.cc", | |
| 2911 | 2918 | "factory.inc", | |
| 2912 | - "field-offsets.h", | ||
| 2913 | 2919 | "instance-types.h", | |
| 2914 | 2920 | "interface-descriptors.inc", | |
| 2915 | 2921 | "objects-body-descriptors-inl.inc", | |
| 2916 | 2922 | "objects-printer.cc", | |
| 2923 | + "visitor-lists.h", | ||
| 2917 | 2924 | ], | |
| 2918 | 2925 | args = select({ | |
| 2919 | 2926 | ":is_v8_annotate_torque_ir": [ "-annotate-ir" ], | |
| Back | FazBrowse Home | New Git URL |
0 commit comments