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

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

Issue 2617713002: [WIP] Add DCHECK for mojo::edk::Init().
Patch Set: test Created 3 years, 11 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 | « chromecast/BUILD.gn ('k') | chromecast/app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 source_set("test_support") { 59 source_set("test_support") {
60 testonly = true 60 testonly = true
61 sources = [ 61 sources = [
62 "cast_test_launcher.cc", 62 "cast_test_launcher.cc",
63 "cast_test_launcher.h",
63 ] 64 ]
64 65
65 deps = [ 66 deps = [
66 ":app", 67 ":app",
67 "//base", 68 "//base",
68 "//base/test:test_support", 69 "//base/test:test_support",
69 "//chromecast/base", 70 "//chromecast/base",
70 "//content/test:test_support", 71 "//content/test:test_support",
71 "//mojo/edk/embedder:headers",
72 ] 72 ]
73 } 73 }
74 74
75 source_set("unittests_main") {
76 testonly = true
77 sources = [
78 "cast_unittests_main.cc",
79 ]
80
81 deps = [
82 ":test_support",
83 "//base/test:test_support",
84 "//mojo/edk/embedder:headers",
85 "//mojo/edk/test:test_support",
86 ]
87 }
88
89 source_set("browsertests_main") {
90 testonly = true
91 sources = [
92 "cast_browsertests_main.cc",
93 ]
94
95 deps = [
96 ":test_support",
97 ]
98 }
99
75 source_set("unittests") { 100 source_set("unittests") {
76 testonly = true 101 testonly = true
77 sources = [ 102 sources = [
78 "linux/cast_crash_reporter_client_unittest.cc", 103 "linux/cast_crash_reporter_client_unittest.cc",
79 ] 104 ]
80 105
81 deps = [ 106 deps = [
82 ":cast_crash_client", 107 ":cast_crash_client",
83 "//base", 108 "//base",
84 "//base/test:test_support", 109 "//base/test:test_support",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "chromecast_settings_ta.pak", 181 "chromecast_settings_ta.pak",
157 "chromecast_settings_te.pak", 182 "chromecast_settings_te.pak",
158 "chromecast_settings_th.pak", 183 "chromecast_settings_th.pak",
159 "chromecast_settings_tr.pak", 184 "chromecast_settings_tr.pak",
160 "chromecast_settings_uk.pak", 185 "chromecast_settings_uk.pak",
161 "chromecast_settings_vi.pak", 186 "chromecast_settings_vi.pak",
162 "chromecast_settings_zh-CN.pak", 187 "chromecast_settings_zh-CN.pak",
163 "chromecast_settings_zh-TW.pak", 188 "chromecast_settings_zh-TW.pak",
164 ] 189 ]
165 } 190 }
OLDNEW
« no previous file with comments | « chromecast/BUILD.gn ('k') | chromecast/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698