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

Unified Diff: components/installedapp/BUILD.gn

Issue 1586563009: IsNativeAppInstalled Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: 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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698