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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
11 import("//chrome/chrome_repack_locales.gni")
11 import("//chrome/test/base/js2gtest.gni") 12 import("//chrome/test/base/js2gtest.gni")
12 import("//components/os_crypt/features.gni") 13 import("//components/os_crypt/features.gni")
13 import("//services/shell/public/service_manifest.gni") 14 import("//services/shell/public/service_manifest.gni")
14 import("//testing/test.gni") 15 import("//testing/test.gni")
15 import("//v8/gni/v8.gni") 16 import("//v8/gni/v8.gni")
16 17
17 if (is_android) { 18 if (is_android) {
18 import("//build/config/android/rules.gni") 19 import("//build/config/android/rules.gni")
19 } 20 }
20 21
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 data_deps = [ 1185 data_deps = [
1185 ":mash_browser_tests_manifest", 1186 ":mash_browser_tests_manifest",
1186 "//chrome/app:mojo_manifests", 1187 "//chrome/app:mojo_manifests",
1187 "//mash/session", 1188 "//mash/session",
1188 ] 1189 ]
1189 } else { 1190 } else {
1190 sources += [ "base/browser_tests_main.cc" ] 1191 sources += [ "base/browser_tests_main.cc" ]
1191 } 1192 }
1192 } 1193 }
1193 1194
1195 # Used only by chrome/browser/ui/webui/bidi_checker_web_ui_test.cc
1196 chrome_repack_locales("repack_pseudo_locales") {
1197 visibility = [ ":*" ]
1198
1199 input_locales = [ "fake-bidi" ]
1200
1201 if (is_mac) {
1202 output_locales = [ "fake_bidi" ] # Mac uses underscores.
1203 } else {
1204 output_locales = [ "fake-bidi" ]
1205 }
1206 }
1207
1194 test("browser_tests") { 1208 test("browser_tests") {
1195 sources = [ 1209 sources = [
1196 # TODO(jbudorick): Move tests here from other lists as Android support is 1210 # TODO(jbudorick): Move tests here from other lists as Android support is
1197 # implemented. See crbug.com/611756 1211 # implemented. See crbug.com/611756
1198 ] 1212 ]
1199 1213
1200 configs += [ 1214 configs += [
1201 "//build/config:precompiled_headers", 1215 "//build/config:precompiled_headers",
1202 "//third_party/WebKit/public:debug_devtools", 1216 "//third_party/WebKit/public:debug_devtools",
1203 ] 1217 ]
1204 1218
1205 deps = [ 1219 deps = [
1206 ":browser_tests_runner", 1220 ":browser_tests_runner",
1221 ":repack_pseudo_locales",
1207 ":test_support", 1222 ":test_support",
1208 "//base", 1223 "//base",
1209 "//components/sync:test_support_sync_api", 1224 "//components/sync:test_support_sync_api",
1210 ] 1225 ]
1211 1226
1212 data_deps = [] 1227 data_deps = []
1213 1228
1214 data = [] 1229 data = []
1215 1230
1216 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 1231 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
(...skipping 3771 matching lines...) Expand 10 before | Expand all | Expand 10 after
4988 "touch_hud", 5003 "touch_hud",
4989 "ui", 5004 "ui",
4990 ] 5005 ]
4991 5006
4992 if (is_linux && !is_android) { 5007 if (is_linux && !is_android) {
4993 deps += [ "//components/font_service:manifest" ] 5008 deps += [ "//components/font_service:manifest" ]
4994 packaged_services += [ "font_service" ] 5009 packaged_services += [ "font_service" ]
4995 } 5010 }
4996 } 5011 }
4997 } 5012 }
OLDNEW
« 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