blob: cb1cf52e2fed8e653127a852aba58807622f651e [file] [log] [blame]
# Copyright 2016 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("//mojo/public/mojo_application.gni")
import("//mojo/public/mojo_application_manifest.gni")
mojo_native_application("mus_demo") {
sources = [
"main.cc",
"mus_demo.cc",
"mus_demo.h",
]
deps = [
"//base",
"//components/bitmap_uploader",
"//mojo/public/cpp/bindings",
"//services/shell/public/cpp",
"//services/shell/public/cpp:sources",
"//services/ui/public/cpp",
"//services/ui/public/interfaces",
"//skia",
"//ui/gfx/geometry",
]
data_deps = [
":manifest",
"//services/ui",
]
}
mojo_application_manifest("manifest") {
application_name = "mus_demo"
source = "manifest.json"
}
group("demo") {
deps = [
":mus_demo",
]
}