Skip to content

Commit

Permalink
www/chromium: unbreak chromedriver unittest by fixing a bad ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
rnagy authored and rene0 committed Mar 3, 2022
1 parent 2ae66e8 commit 2d34172
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -14,7 +14,7 @@
ui::ScopedKeyboardLayout keyboard_layout(ui::KEYBOARD_LAYOUT_ENGLISH_US);
const char kTextForKeys[] = {
-#if defined(OS_LINUX) || defined(OS_CHROMEOS)
+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_LINUX)
+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD)
0, 0, 0, 0, '\t', 0, '\r', '\r', 0, 0, 0, 0, 0,
#else
0, 0, 0, 0, 0, 0, '\r', '\r', 0, 0, 0, 0, 0,

0 comments on commit 2d34172

Please sign in to comment.