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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 } | 64 } |
65 | 65 |
66 grit("resources") { | 66 grit("resources") { |
67 source = "//chromecast/app/resources/shell_resources.grd" | 67 source = "//chromecast/app/resources/shell_resources.grd" |
68 | 68 |
69 resource_ids = "//chromecast/app/resources/resource_ids" | 69 resource_ids = "//chromecast/app/resources/resource_ids" |
70 | 70 |
71 outputs = [ | 71 outputs = [ |
72 "grit/shell_resources.h", | 72 "grit/shell_resources.h", |
73 "shell_resources.pak", | 73 "shell_resources.pak", |
74 "shell_resources.rc", | |
75 ] | 74 ] |
76 } | 75 } |
77 | 76 |
78 grit("chromecast_settings") { | 77 grit("chromecast_settings") { |
79 source = "//chromecast/app/resources/chromecast_settings.grd" | 78 source = "//chromecast/app/resources/chromecast_settings.grd" |
80 | 79 |
81 resource_ids = "//chromecast/app/resources/resource_ids" | 80 resource_ids = "//chromecast/app/resources/resource_ids" |
82 | 81 |
83 outputs = [ | 82 outputs = [ |
84 "grit/chromecast_settings.h", | 83 "grit/chromecast_settings.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "chromecast_settings_ta.pak", | 130 "chromecast_settings_ta.pak", |
132 "chromecast_settings_te.pak", | 131 "chromecast_settings_te.pak", |
133 "chromecast_settings_th.pak", | 132 "chromecast_settings_th.pak", |
134 "chromecast_settings_tr.pak", | 133 "chromecast_settings_tr.pak", |
135 "chromecast_settings_uk.pak", | 134 "chromecast_settings_uk.pak", |
136 "chromecast_settings_vi.pak", | 135 "chromecast_settings_vi.pak", |
137 "chromecast_settings_zh-CN.pak", | 136 "chromecast_settings_zh-CN.pak", |
138 "chromecast_settings_zh-TW.pak", | 137 "chromecast_settings_zh-TW.pak", |
139 ] | 138 ] |
140 } | 139 } |
OLD | NEW |