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

Unified Diff: extensions/common/BUILD.gn

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Make //components/version_info:version_info dep explicit 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 side-by-side diff with in-line comments
Download patch
Index: extensions/common/BUILD.gn
diff --git a/extensions/common/BUILD.gn b/extensions/common/BUILD.gn
index 19e1213683add2338bb5cc9b7dbd7385ae40b050..edbf276efd3479624a13782607e64f3dc1fa85c4 100644
--- a/extensions/common/BUILD.gn
+++ b/extensions/common/BUILD.gn
@@ -296,6 +296,13 @@ if (enable_extensions) {
"manifest_handlers/nacl_modules_handler.h",
]
}
+
+ if (is_chromeos) {
+ sources += [
+ "manifest_handlers/action_handlers_handler.cc",
+ "manifest_handlers/action_handlers_handler.h",
+ ]
+ }
}
source_set("unit_tests") {
@@ -348,6 +355,7 @@ if (enable_extensions) {
"//base:i18n",
"//base/test:test_support",
"//components/crx_file",
+ "//components/version_info:version_info",
"//device/usb",
"//device/usb:test_support",
"//extensions:extensions_resources",
@@ -363,5 +371,9 @@ if (enable_extensions) {
"//ui/gfx",
"//url",
]
+
+ if (is_chromeos) {
+ sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
+ }
}
} # enable_extensions

Powered by Google App Engine
This is Rietveld 408576698