Commit 48a64cdc authored by Jordy Greenblatt's avatar Jordy Greenblatt Committed by Commit Bot

[CrOS MultiDevice]: Fixed closure checks

In earlier CLs I hadn't matched the migration away from GYP to GN in
the Settings UI closure compilation. This is that migration for
the multidevice folder.


Bug: 632206
Cq-Include-Trybots: luci.chromium.try:closure_compilation
Change-Id: I2ad09426c87c5453b26e0a7d5bbe3957ccc0a1ca
Reviewed-on: https://chromium-review.googlesource.com/1115758Reviewed-by: default avatarKyle Horimoto <khorimoto@chromium.org>
Reviewed-by: default avatarDemetrios Papadopoulos <dpapad@chromium.org>
Commit-Queue: Jordy Greenblatt <jordynass@chromium.org>
Cr-Commit-Position: refs/heads/master@{#570602}
parent c4bdc13e
...@@ -81,6 +81,7 @@ group("closure_compile") { ...@@ -81,6 +81,7 @@ group("closure_compile") {
"incompatible_applications_page:closure_compile", "incompatible_applications_page:closure_compile",
"internet_page:closure_compile", "internet_page:closure_compile",
"languages_page:closure_compile", "languages_page:closure_compile",
"multidevice_page:closure_compile",
"on_startup_page:closure_compile", "on_startup_page:closure_compile",
"passwords_and_forms_page:closure_compile", "passwords_and_forms_page:closure_compile",
"people_page:closure_compile", "people_page:closure_compile",
......
...@@ -6,12 +6,27 @@ import("//third_party/closure_compiler/compile_js.gni") ...@@ -6,12 +6,27 @@ import("//third_party/closure_compiler/compile_js.gni")
js_type_check("closure_compile") { js_type_check("closure_compile") {
deps = [ deps = [
":multidevice_browser_proxy",
":multidevice_page", ":multidevice_page",
":multidevice_page_container",
]
}
js_library("multidevice_browser_proxy") {
deps = [
"//ui/webui/resources/js:cr",
] ]
} }
js_library("multidevice_page") { js_library("multidevice_page") {
deps = [ deps = [
"//ui/webui/resources/js:cr",
"//ui/webui/resources/js:i18n_behavior", "//ui/webui/resources/js:i18n_behavior",
] ]
} }
js_library("multidevice_page_container") {
deps = [
":multidevice_page",
]
}
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
<link rel="import" href="chrome://resources/cr_elements/cr_toggle/cr_toggle.html"> <link rel="import" href="chrome://resources/cr_elements/cr_toggle/cr_toggle.html">
<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_indicator.html"> <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_indicator.html">
<link rel="import" href="chrome://resources/html/cr.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.html"> <link rel="import" href="chrome://resources/html/i18n_behavior.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="../i18n_setup.html"> <link rel="import" href="../i18n_setup.html">
......
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
* Settings page for managing MultiDevice features. * Settings page for managing MultiDevice features.
*/ */
cr.exportPath('settings');
/** /**
* The possible statuses of hosts on the logged in account that determine the * The possible statuses of hosts on the logged in account that determine the
* page content. * page content.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment