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

Unified Diff: chromecast/browser/BUILD.gn

Issue 2374253007: Report unpermitted interface requests as bad messages (Closed)
Patch Set: . Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/BUILD.gn ('k') | chromecast/browser/cast_browser_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/BUILD.gn
diff --git a/chromecast/browser/BUILD.gn b/chromecast/browser/BUILD.gn
index 15a8c8bfef2c21a4747a781f183fdaeec67bc437..1612181de577c2178412c16a4b561e2bc09cf427 100644
--- a/chromecast/browser/BUILD.gn
+++ b/chromecast/browser/BUILD.gn
@@ -2,9 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/ui.gni")
import("//chromecast/chromecast.gni")
import("//testing/test.gni")
-import("//build/config/ui.gni")
+import("//tools/grit/grit_rule.gni")
if (is_android) {
import("//build/config/android/rules.gni")
@@ -85,6 +86,7 @@ source_set("browser") {
"//chromecast/base",
"//chromecast/base:cast_sys_info",
"//chromecast/base:cast_version",
+ "//chromecast/browser:resources",
"//chromecast/common",
"//chromecast/common/media",
"//chromecast/graphics",
@@ -140,6 +142,20 @@ source_set("browser") {
}
}
+grit("resources") {
+ visibility = [
+ ":browser",
+ "//chromecast:cast_shell_pak",
+ ]
+ source = "cast_browser_resources.grd"
+ use_qualified_include = true
+ output_dir = "$root_gen_dir/chromecast/browser"
+ outputs = [
+ "grit/cast_browser_resources.h",
+ "cast_browser_resources.pak",
+ ]
+}
+
source_set("test_support") {
testonly = true
« no previous file with comments | « chromecast/BUILD.gn ('k') | chromecast/browser/cast_browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698