Skip to content

Commit

Permalink
Removed the deprecated analysis_options attribute. (flutter#4278)
Browse files Browse the repository at this point in the history
  • Loading branch information
pylaligand authored Oct 26, 2017
1 parent 4a9e678 commit ca1e750
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions build/flutter_app.gni
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ template("flutter_jit_app") {
dart_package(dart_package_name) {
forward_variables_from(invoker,
[
"analysis_options",
"deps",
"disable_analysis",
"source_dir",
Expand Down Expand Up @@ -191,7 +190,6 @@ template("flutter_aot_app") {
dart_package(dart_package_name) {
forward_variables_from(invoker,
[
"analysis_options",
"deps",
"disable_analysis",
"source_dir",
Expand Down Expand Up @@ -381,13 +379,8 @@ template("flutter_aot_app") {
# manifest (optional)
# Path to the manifest file
#
# analysis_options (optional)
# By default, a script to run the analyzer on the contents of the package is
# generated in the output directory. This parameter contains the path to an
# analysis options file for this target.
#
# disable_analysis (optional)
# Prevents the analysis script from being generated.
# Prevents analysis from being run on this target.
template("flutter_app") {
if (flutter_app_default_is_jit) {
flutter_jit_app(target_name) {
Expand All @@ -398,7 +391,6 @@ template("flutter_app") {
"output_name",
"deps",
"manifest",
"analysis_options",
"disable_analysis",
"source_dir",
])
Expand All @@ -412,7 +404,6 @@ template("flutter_app") {
"output_name",
"deps",
"manifest",
"analysis_options",
"disable_analysis",
"source_dir",
])
Expand Down

0 comments on commit ca1e750

Please sign in to comment.