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

Unified Diff: chrome/test/BUILD.gn

Issue 2339513002: 🎀 Move repack_pseudo_locales //chrome -> //chrome/test (Closed)
Patch Set: rebase Created 4 years, 3 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 | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 991e5a04dd9f3f0325a6859ca7c1c92fec75a01b..f55b3e0b4bdfcdbbdd8231747204eaba9d9d4968 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -8,6 +8,7 @@ import("//build/config/crypto.gni")
import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//chrome/common/features.gni")
+import("//chrome/chrome_repack_locales.gni")
import("//chrome/test/base/js2gtest.gni")
import("//components/os_crypt/features.gni")
import("//services/shell/public/service_manifest.gni")
@@ -1191,6 +1192,19 @@ static_library("browser_tests_runner") {
}
}
+# Used only by chrome/browser/ui/webui/bidi_checker_web_ui_test.cc
+chrome_repack_locales("repack_pseudo_locales") {
+ visibility = [ ":*" ]
+
+ input_locales = [ "fake-bidi" ]
+
+ if (is_mac) {
+ output_locales = [ "fake_bidi" ] # Mac uses underscores.
+ } else {
+ output_locales = [ "fake-bidi" ]
+ }
+}
+
test("browser_tests") {
sources = [
# TODO(jbudorick): Move tests here from other lists as Android support is
@@ -1204,6 +1218,7 @@ test("browser_tests") {
deps = [
":browser_tests_runner",
+ ":repack_pseudo_locales",
":test_support",
"//base",
"//components/sync:test_support_sync_api",
« no previous file with comments | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698