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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
7
8 component("installedapp") {
9 output_name = "device_installedapp"
10
11 sources = [
12 "installed_app_export.h",
13 "installed_app_provider_impl.h",
14 "installed_app_provider_impl_default.cc",
15 ]
16
17 defines = [ "DEVICE_INSTALLEDAPP_IMPLEMENTATION" ]
18
19 deps = [
20 ":mojo_bindings",
21 "//base",
22 "//base/third_party/dynamic_annotations",
23 "//mojo/environment:chromium",
24 "//third_party/mojo/src/mojo/edk/system",
25 "//third_party/mojo/src/mojo/public/cpp/bindings",
26 ]
27 }
28
29 mojom("mojo_bindings") {
30 sources = [
31 "installed_app_provider.mojom",
32 ]
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698