OLD | NEW |
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 test("cast_shell_unittests") { | 48 test("cast_shell_unittests") { |
49 sources = [ | 49 sources = [ |
50 "linux/cast_crash_reporter_client_unittest.cc", | 50 "linux/cast_crash_reporter_client_unittest.cc", |
51 ] | 51 ] |
52 | 52 |
53 deps = [ | 53 deps = [ |
54 ":cast_crash_client", | 54 ":cast_crash_client", |
55 "//base", | 55 "//base", |
56 "//base/test:run_all_unittests", | 56 "//base/test:run_all_unittests", |
57 "//base/test:test_support", | 57 "//base/test:test_support", |
| 58 "//chromecast/base:test_support", |
58 "//chromecast/crash", | 59 "//chromecast/crash", |
59 "//chromecast/crash:test_support", | 60 "//chromecast/crash:test_support", |
60 "//testing/gtest", | 61 "//testing/gtest", |
61 ] | 62 ] |
62 } | 63 } |
63 | 64 |
64 grit("resources") { | 65 grit("resources") { |
65 source = "//chromecast/app/resources/shell_resources.grd" | 66 source = "//chromecast/app/resources/shell_resources.grd" |
66 | 67 |
67 resource_ids = "//chromecast/app/resources/resource_ids" | 68 resource_ids = "//chromecast/app/resources/resource_ids" |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 "chromecast_settings_ta.pak", | 130 "chromecast_settings_ta.pak", |
130 "chromecast_settings_te.pak", | 131 "chromecast_settings_te.pak", |
131 "chromecast_settings_th.pak", | 132 "chromecast_settings_th.pak", |
132 "chromecast_settings_tr.pak", | 133 "chromecast_settings_tr.pak", |
133 "chromecast_settings_uk.pak", | 134 "chromecast_settings_uk.pak", |
134 "chromecast_settings_vi.pak", | 135 "chromecast_settings_vi.pak", |
135 "chromecast_settings_zh-CN.pak", | 136 "chromecast_settings_zh-CN.pak", |
136 "chromecast_settings_zh-TW.pak", | 137 "chromecast_settings_zh-TW.pak", |
137 ] | 138 ] |
138 } | 139 } |
OLD | NEW |