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

Unified Diff: runtime/BUILD.gn

Issue 2596333002: GN: Fix armsimdbc target. Add armsimdbc64 (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | tools/build.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/BUILD.gn
diff --git a/runtime/BUILD.gn b/runtime/BUILD.gn
index 8556ba29f8019358f4fd385707bc430ae39e2a93..6008aecabad0430312d83ca6f0f48e5cbc0a6c30 100644
--- a/runtime/BUILD.gn
+++ b/runtime/BUILD.gn
@@ -129,11 +129,13 @@ config("dart_config") {
} else if (dart_target_arch == "ia32") {
defines += [ "TARGET_ARCH_IA32" ]
} else if (dart_target_arch == "dbc" || dart_target_arch == "simdbc" ||
- dart_target_arch == "simdbc64") {
+ dart_target_arch == "simdbc64" ||
+ dart_target_arch == "armsimdbc" ||
+ dart_target_arch == "armsimdbc64") {
defines += [ "TARGET_ARCH_DBC" ]
defines += [ "USING_SIMULATOR" ]
} else {
- print("Invalid |dart_target_arch|")
+ print("Invalid $dart_target_arch")
assert(false)
}
}
« no previous file with comments | « no previous file | tools/build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698