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

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

Issue 952893003: Update from https://crrev.com/317530 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix gn for nacl Created 5 years, 10 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/gn.py ('k') | mojo/tools/roll/cc_strip_video.patch » ('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 815a63d0e362244af22709e0b1fea78616621389..3773027ee18dc3b92662dca715054999f32184f6 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", "chromeos", "linux"],
- "target_arch": [None, "x86", "x64", "arm"],
+ "target_cpu": [None, "x86", "x64", "arm"],
"is_debug": [False, True],
"is_clang": [False, True],
"sanitizer": [None, Config.SANITIZER_ASAN],
@@ -37,7 +37,7 @@ class GTestListTestsTest(unittest.TestCase):
"""Tests that gn to config to gn is the identity"""
configs_to_test = {
"os": [None, "android", "chromeos"],
- "target_arch": ["x86", "x64", "arm"],
+ "target_cpu": ["x86", "x64", "arm"],
"is_debug": [False, True],
"is_clang": [False, True],
"is_asan": [False, True],
« no previous file with comments | « mojo/tools/mopy/gn.py ('k') | mojo/tools/roll/cc_strip_video.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698