Index: components/installedapp/BUILD.gn |
diff --git a/components/installedapp/BUILD.gn b/components/installedapp/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..44fd908808ccf34acf1c925f498f47402f79477b |
--- /dev/null |
+++ b/components/installedapp/BUILD.gn |
@@ -0,0 +1,33 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import("//build/config/features.gni") |
+import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
+ |
+component("installedapp") { |
+ output_name = "device_installedapp" |
+ |
+ sources = [ |
+ "installed_app_export.h", |
+ "installed_app_provider_impl.h", |
+ "installed_app_provider_impl_default.cc", |
+ ] |
+ |
+ defines = [ "DEVICE_INSTALLEDAPP_IMPLEMENTATION" ] |
+ |
+ deps = [ |
+ ":mojo_bindings", |
+ "//base", |
+ "//base/third_party/dynamic_annotations", |
+ "//mojo/environment:chromium", |
+ "//third_party/mojo/src/mojo/edk/system", |
+ "//third_party/mojo/src/mojo/public/cpp/bindings", |
+ ] |
+} |
+ |
+mojom("mojo_bindings") { |
+ sources = [ |
+ "installed_app_provider.mojom", |
+ ] |
+} |