Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit e4624d3

Browse files
committed
[fuchsia] Remove component framework v1 support.
There are no longer any CMX-based components outside of prebuilts which are run by existing flutter runner prebuilts.
1 parent b6b1d35 commit e4624d3

17 files changed

+2
-1094
lines changed

ci/licenses_golden/excluded_files

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,6 @@
273273
../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc
274274
../../../flutter/shell/platform/fuchsia/flutter/build/asset_package.py
275275
../../../flutter/shell/platform/fuchsia/flutter/build/gen_debug_wrapper_main.py
276-
../../../flutter/shell/platform/fuchsia/flutter/component_v1_unittest.cc
277-
../../../flutter/shell/platform/fuchsia/flutter/component_v2_unittest.cc
278276
../../../flutter/shell/platform/fuchsia/flutter/focus_delegate_unittests.cc
279277
../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl_unittest.cc
280278
../../../flutter/shell/platform/fuchsia/flutter/kernel/analysis_options.yaml

ci/licenses_golden/licenses_flutter

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2713,8 +2713,6 @@ ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/service_isolate.h +
27132713
ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/empty.dart + ../../../flutter/LICENSE
27142714
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.cc + ../../../flutter/LICENSE
27152715
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.h + ../../../flutter/LICENSE
2716-
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.cc + ../../../flutter/LICENSE
2717-
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.h + ../../../flutter/LICENSE
27182716
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.cc + ../../../flutter/LICENSE
27192717
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.h + ../../../flutter/LICENSE
27202718
ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/engine.cc + ../../../flutter/LICENSE
@@ -5231,8 +5229,6 @@ FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/service_isolate.h
52315229
FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/empty.dart
52325230
FILE: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.cc
52335231
FILE: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.h
5234-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.cc
5235-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.h
52365232
FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.cc
52375233
FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.h
52385234
FILE: ../../../flutter/shell/platform/fuchsia/flutter/engine.cc
@@ -5265,19 +5261,11 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.cc
52655261
FILE: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.h
52665262
FILE: ../../../flutter/shell/platform/fuchsia/flutter/logging.h
52675263
FILE: ../../../flutter/shell/platform/fuchsia/flutter/main.cc
5268-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/aot_product_runtime
5269-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/aot_runtime
52705264
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/common.shard.cml
52715265
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_product_runner.cml
5272-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_product_runner.cmx
52735266
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_runner.cml
5274-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_runner.cmx
52755267
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_product_runner.cml
5276-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_product_runner.cmx
52775268
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_runner.cml
5278-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_runner.cmx
5279-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/jit_product_runtime
5280-
FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/jit_runtime
52815269
FILE: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.cc
52825270
FILE: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.h
52835271
FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate.cc

shell/platform/fuchsia/flutter/BUILD.gn

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ template("runner_sources") {
5757
sources = [
5858
"accessibility_bridge.cc",
5959
"accessibility_bridge.h",
60-
"component_v1.cc",
61-
"component_v1.h",
6260
"component_v2.cc",
6361
"component_v2.h",
6462
"engine.cc",
@@ -322,7 +320,6 @@ template("jit_runner") {
322320

323321
binary = "flutter_jit${product_suffix}_runner"
324322

325-
cmx_file = rebase_path("meta/flutter_jit${product_suffix}_runner.cmx")
326323
cml_file = rebase_path("meta/flutter_jit${product_suffix}_runner.cml")
327324

328325
resources = [
@@ -402,7 +399,6 @@ template("aot_runner") {
402399
]
403400
}
404401

405-
cmx_file = rebase_path("meta/flutter_aot${product_suffix}_runner.cmx")
406402
cml_file = rebase_path("meta/flutter_aot${product_suffix}_runner.cml")
407403

408404
binary = "flutter_aot${product_suffix}_runner"
@@ -500,7 +496,6 @@ if (enable_unittests) {
500496

501497
sources = [
502498
"accessibility_bridge_unittest.cc",
503-
"component_v1_unittest.cc",
504499
"component_v2_unittest.cc",
505500
"flutter_runner_fakes.h",
506501
"focus_delegate_unittests.cc",

0 commit comments

Comments
 (0)