This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +20
-35
lines changed
impeller/tessellator/dart Expand file tree Collapse file tree 6 files changed +20
-35
lines changed Original file line number Diff line number Diff line change 211
211
../../../flutter/impeller/scene/scene_unittests.cc
212
212
../../../flutter/impeller/shader_archive/shader_archive_unittests.cc
213
213
../../../flutter/impeller/tessellator/dart/.dart_tool
214
- ../../../flutter/impeller/tessellator/dart/pubspec.lock
215
214
../../../flutter/impeller/tessellator/dart/pubspec.yaml
216
215
../../../flutter/impeller/tessellator/tessellator_unittests.cc
217
216
../../../flutter/impeller/toolkit/android/README.md
423
422
../../../flutter/shell/profiling/sampling_profiler_unittest.cc
424
423
../../../flutter/shell/testing
425
424
../../../flutter/shell/vmservice/.dart_tool
426
- ../../../flutter/shell/vmservice/pubspec.lock
427
425
../../../flutter/shell/vmservice/pubspec.yaml
428
426
../../../flutter/sky/packages/sky_engine/.gitignore
429
427
../../../flutter/sky/packages/sky_engine/LICENSE
Original file line number Diff line number Diff line change 4
4
5
5
name : flutter_frontend_server
6
6
publish_to : none
7
- version : 0.1.1-dev
8
- description : Communication pipe to Dart Frontend
9
- homepage : https://flutter.dev
10
-
11
- # Do not add any dependencies that require more than what is provided in
12
- # //third_party/pkg, //third_party/dart/pkg or
13
- # //third_party/dart/third_party/pkg. In particular, package:test is not usable
14
- # here.
15
-
16
- # If you do add packages here, make sure you can run `pub get --offline`, and
17
- # check the .packages and .package_config to make sure all the paths are
18
- # relative to this directory into //third_party/dart
19
7
8
+ # Required for workspace support.
20
9
environment :
21
- sdk : ' >=3.2.0-0 <4.0.0'
10
+ sdk : ^3.5.0-294.0.dev
11
+
12
+ # This package is managed as part of the engine workspace.
13
+ resolution : workspace
22
14
23
15
dev_dependencies :
24
16
litetest : any
25
17
path : any
26
-
27
- dependency_overrides :
28
- async_helper :
29
- path : ../third_party/dart/pkg/async_helper
30
- expect :
31
- path : ../third_party/dart/pkg/expect
32
- litetest :
33
- path : ../testing/litetest
34
- meta :
35
- path : ../third_party/dart/pkg/meta
36
- path :
37
- path : ../third_party/dart/third_party/pkg/path
38
- smith :
39
- path : ../third_party/dart/pkg/smith
Original file line number Diff line number Diff line change 2
2
# Use of this source code is governed by a BSD-style license that can be
3
3
# found in the LICENSE file.
4
4
name : tessellator
5
- description : A Dart FFI wrapper for Impeller's tessellator.
6
- version : 0.0.0
7
5
publish_to : none
8
- homepage : https://github.com/flutter/impeller/tree/main/tessellator/dart
9
6
7
+ # Required for workspace support.
10
8
environment :
11
- sdk : ' >=3.2.0-0 <4.0.0'
9
+ sdk : ^3.5.0-294.0.dev
10
+
11
+ # This package is managed as part of the engine workspace.
12
+ resolution : workspace
Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ environment:
81
81
# Declare all packages that are part of the workspace.
82
82
workspace :
83
83
- ci
84
+ - flutter_frontend_server
85
+ - impeller/tessellator/dart
86
+ - shell/vmservice
84
87
- testing/benchmark
85
88
- testing/dart
86
89
- testing/litetest
Original file line number Diff line number Diff line change @@ -7,6 +7,5 @@ import("//flutter/build/dart/rules.gni")
7
7
# Build a minimal snapshot that can be used to launch the VM service isolate.
8
8
flutter_snapshot (" vmservice_snapshot" ) {
9
9
main_dart = " empty.dart"
10
- package_config = " .dart_tool/package_config.json"
11
10
output_aot_lib = " libvmservice_snapshot.so"
12
11
}
Original file line number Diff line number Diff line change 4
4
5
5
name : vmservice_snapshot
6
6
publish_to : none
7
+
8
+ # Required for workspace support.
7
9
environment :
8
- sdk : ' >=3.2.0-0 <4.0.0'
10
+ sdk : ^3.5.0-294.0.dev
11
+
12
+ # This package is managed as part of the engine workspace.
13
+ resolution : workspace
14
+
You can’t perform that action at this time.
0 commit comments