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

Unified Diff: mojo/tools/mopy/gn_unittest.py

Issue 1540293003: Support for arm64 build. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 4 years, 12 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
« no previous file with comments | « mojo/tools/mopy/config.py ('k') | skia/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/mopy/gn_unittest.py
diff --git a/mojo/tools/mopy/gn_unittest.py b/mojo/tools/mopy/gn_unittest.py
index 8a440ea2a61f6a8159cbf2e238545f0f09dc5047..25bcaa481d38cc2b343f1183b79fca83fdd4bb82 100644
--- a/mojo/tools/mopy/gn_unittest.py
+++ b/mojo/tools/mopy/gn_unittest.py
@@ -18,7 +18,7 @@ class GTestListTestsTest(unittest.TestCase):
"""Tests that config to gn to config is the identity"""
configs_to_test = {
"target_os": [None, "android", "linux", "ios"],
- "target_cpu": [None, "x86", "x64", "arm"],
+ "target_cpu": [None, "x86", "x64", "arm", "arm64"],
"is_simulator": [False, True],
"is_debug": [False, True],
"is_official_build": [False, True],
@@ -45,7 +45,7 @@ class GTestListTestsTest(unittest.TestCase):
# TODO(vtl): Test OSes other than None (== host?) and "android".
configs_to_test = {
"target_os": [None, "android"],
- "target_cpu": ["x86", "x64", "arm"],
+ "target_cpu": ["x86", "x64", "arm", "arm64"],
"is_debug": [False, True],
"is_official_build": [False, True],
"is_clang": [False, True],
« no previous file with comments | « mojo/tools/mopy/config.py ('k') | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698