mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* WIP on web plugin registry * WIP on registering plugins * WIP on web plugin registration * Only generate `package:flutter_web_plugins` imports if plugins are defined * Add parsing test * Add documentation * Fix analyzer warnings * add license headers * Add tests for package:flutter_web_plugins * Run `flutter update-packages --force-upgrade` * Fix analyzer errors * Fix analyzer error in test * Update copyright and remove flutter SDK constraints * Enable tests since engine has rolled * add flutter_web_plugins tests to bots * Create an empty .packages file for WebFs test
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
# Copyright 2019 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/dart/dart_library.gni")
|
|
|
|
dart_library("flutter_web_plugins") {
|
|
package_name = "flutter_web_plugins"
|
|
|
|
# Can be left empty as analysis is disabled.
|
|
sources = []
|
|
|
|
disable_analysis = true
|
|
|
|
deps = [
|
|
"../flutter",
|
|
]
|
|
}
|