Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
1954ffca
Unverified
Commit
1954ffca
authored
Jan 08, 2018
by
P.Y. Laligand
Committed by
GitHub
Jan 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fuchsia] dart_package is now dart_library. (#13979)
parent
3782415d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
BUILD.gn
packages/flutter/BUILD.gn
+2
-2
BUILD.gn
packages/flutter_test/BUILD.gn
+2
-2
BUILD.gn
packages/flutter_tools/BUILD.gn
+2
-2
fuchsia_reload.dart
packages/flutter_tools/lib/src/commands/fuchsia_reload.dart
+1
-1
No files found.
packages/flutter/BUILD.gn
View file @
1954ffca
...
...
@@ -2,9 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/dart/dart_
package
.gni")
import("//build/dart/dart_
library
.gni")
dart_
package
("flutter") {
dart_
library
("flutter") {
package_name = "flutter"
disable_analysis = true
...
...
packages/flutter_test/BUILD.gn
View file @
1954ffca
...
...
@@ -2,9 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/dart/dart_
package
.gni")
import("//build/dart/dart_
library
.gni")
dart_
package
("flutter_test") {
dart_
library
("flutter_test") {
package_name = "flutter_test"
disable_analysis = true
...
...
packages/flutter_tools/BUILD.gn
View file @
1954ffca
...
...
@@ -2,10 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/dart/dart_
package
.gni")
import("//build/dart/dart_
library
.gni")
import("//build/dart/dart_tool.gni")
dart_
package
("flutter_tools") {
dart_
library
("flutter_tools") {
package_name = "flutter_tools"
disable_analysis = true
...
...
packages/flutter_tools/lib/src/commands/fuchsia_reload.dart
View file @
1954ffca
...
...
@@ -328,7 +328,7 @@ class FuchsiaReloadCommand extends FlutterCommand {
if
(!
_fileExists
(
_target
))
throwToolExit
(
'Couldn
\'
t find application entry point at
$_target
.'
);
final
String
packagesFileName
=
'
${_projectName}
_dart_
package
.packages'
;
final
String
packagesFileName
=
'
${_projectName}
_dart_
library
.packages'
;
_dotPackagesPath
=
'
$_fuchsiaRoot
/out/
$_buildType
/dartlang/gen/
$_projectRoot
/
$packagesFileName
'
;
if
(!
_fileExists
(
_dotPackagesPath
))
throwToolExit
(
'Couldn
\'
t find .packages file at
$_dotPackagesPath
.'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment