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

Unified Diff: base/BUILD.gn

Issue 2033393003: 💸 target_cpu -> current_cpu in base/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@monochrome
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index d49a22d8f1caf35bd9e54ceaaedcd0b1f8e5a983..06c1492cebddf7beda833613837d38725a4530ea 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -1640,7 +1640,7 @@ if (is_win) {
]
}
- if (target_cpu == "x64") {
+ if (current_cpu == "x64") {
# Must be a shared library so that it can be unloaded during testing.
shared_library("base_profiler_test_support_library") {
sources = [
@@ -2067,7 +2067,7 @@ test("base_unittests") {
if (is_win) {
deps += [ "//base:scoped_handle_test_dll" ]
- if (target_cpu == "x64") {
+ if (current_cpu == "x64") {
sources += [ "profiler/win32_stack_frame_unwinder_unittest.cc" ]
deps += [ ":base_profiler_test_support_library" ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698