| Index: remoting/webapp/BUILD.gn
|
| diff --git a/remoting/webapp/BUILD.gn b/remoting/webapp/BUILD.gn
|
| index e3e79664f70423f44c8b97055c27fbc5a8260f80..f6c765b5ede02838c57ad3f534ca66d67c2d5f67 100644
|
| --- a/remoting/webapp/BUILD.gn
|
| +++ b/remoting/webapp/BUILD.gn
|
| @@ -11,8 +11,13 @@ group("webapp") {
|
| deps = [
|
| ":webapp_v1",
|
| ":ar_sample_app",
|
| + ":ar_shared_module",
|
| ]
|
|
|
| + if (enable_internal_app_remoting_targets) {
|
| + deps += [ "//remoting/internal:ar_internal_apps" ]
|
| + }
|
| +
|
| if (enable_nacl) {
|
| deps += [ ":webapp_v2" ]
|
| }
|
| @@ -40,8 +45,18 @@ app_remoting_webapp("ar_sample_app") {
|
| app_key = "Sample_App"
|
| app_id = "ljacajndfccfgnfohlgkdphmbnpkjflk"
|
| app_client_id = "sample_client_id"
|
| - app_name = "App Remoting Client"
|
| + app_vendor = ""
|
| + app_name = "sample_app"
|
| + app_fullname = "App Remoting Client"
|
| app_description = "App Remoting client"
|
| app_capabilities = [ "GOOGLE_DRIVE" ]
|
| manifest_key = "remotingdevbuild"
|
| }
|
| +
|
| +app_remoting_shared_module("ar_shared_module") {
|
| + app_client_id = "sample_client_id"
|
| + app_name = "shared_module"
|
| + app_fullname = "AppRemoting Shared Module"
|
| + app_description = "AppRemoting Shared Module"
|
| + manifest_key = "remotingdevbuild"
|
| +}
|
|
|