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

Side by Side Diff: chromecast/app/BUILD.gn

Issue 2499563002: [chromecast] Make testnames consistent. (Closed)
Patch Set: disables failing tests Created 4 years, 1 month 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 7
8 source_set("app") { 8 source_set("app") {
9 sources = [ 9 sources = [
10 "cast_main_delegate.cc", 10 "cast_main_delegate.cc",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 if (is_android) { 50 if (is_android) {
51 deps += [ 51 deps += [
52 "//breakpad:client", 52 "//breakpad:client",
53 "//chromecast/base:cast_version", 53 "//chromecast/base:cast_version",
54 "//chromecast/browser:jni_headers", 54 "//chromecast/browser:jni_headers",
55 ] 55 ]
56 } 56 }
57 } 57 }
58 58
59 # TODO(kmackay) Consider renaming this. 59 source_set("test_support") {
60 test("cast_shell_unittests") { 60 testonly = true
61 sources = [
62 "cast_test_launcher.cc",
63 ]
64
65 deps = [
66 ":app",
67 "//base",
68 "//base/test:test_support",
69 "//chromecast/base",
70 "//content/test:test_support",
71 "//mojo/edk/system",
72 ]
73 }
74
75 source_set("unittests") {
76 testonly = true
61 sources = [ 77 sources = [
62 "linux/cast_crash_reporter_client_unittest.cc", 78 "linux/cast_crash_reporter_client_unittest.cc",
63 ] 79 ]
64 80
65 deps = [ 81 deps = [
66 ":cast_crash_client", 82 ":cast_crash_client",
67 "//base", 83 "//base",
68 "//base/test:run_all_unittests",
69 "//base/test:test_support", 84 "//base/test:test_support",
70 "//chromecast/base:test_support", 85 "//chromecast/base:test_support",
71 "//chromecast/crash", 86 "//chromecast/crash",
72 "//chromecast/crash:test_support", 87 "//chromecast/crash:test_support",
73 "//testing/gtest", 88 "//testing/gtest",
74 ] 89 ]
75 } 90 }
76 91
77 grit("resources") { 92 grit("resources") {
78 source = "//chromecast/app/resources/shell_resources.grd" 93 source = "//chromecast/app/resources/shell_resources.grd"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 "chromecast_settings_ta.pak", 156 "chromecast_settings_ta.pak",
142 "chromecast_settings_te.pak", 157 "chromecast_settings_te.pak",
143 "chromecast_settings_th.pak", 158 "chromecast_settings_th.pak",
144 "chromecast_settings_tr.pak", 159 "chromecast_settings_tr.pak",
145 "chromecast_settings_uk.pak", 160 "chromecast_settings_uk.pak",
146 "chromecast_settings_vi.pak", 161 "chromecast_settings_vi.pak",
147 "chromecast_settings_zh-CN.pak", 162 "chromecast_settings_zh-CN.pak",
148 "chromecast_settings_zh-TW.pak", 163 "chromecast_settings_zh-TW.pak",
149 ] 164 ]
150 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698