OLD | NEW |
(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 } |
OLD | NEW |