Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: sdk/BUILD.gn

Issue 2998503002: Change defaults for build args to accommodate Flutter and Fuchsia. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« build/config/BUILDCONFIG.gn ('K') | « build/config/BUILDCONFIG.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/BUILD.gn
diff --git a/sdk/BUILD.gn b/sdk/BUILD.gn
index f0458053bb42a589eb986a7194cb2190cf9943b4..0deb0605fae0889fd1419b48d065f318a590d3ea 100644
--- a/sdk/BUILD.gn
+++ b/sdk/BUILD.gn
@@ -22,6 +22,7 @@ declare_args() {
if (is_fuchsia ||
is_fuchsia_host ||
+ is_flutter ||
current_cpu == "arm64" ||
current_cpu == "arm") {
dart_platform_sdk = true
@@ -226,7 +227,7 @@ copy("copy_dart") {
sources = [
"$dart_out/dart.exe",
]
- } else if (is_fuchsia || is_fuchsia_host) {
+ } else if (is_fuchsia || is_fuchsia_host || is_flutter) {
sources = [
"$dart_out/dart",
]
« build/config/BUILDCONFIG.gn ('K') | « build/config/BUILDCONFIG.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698