mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
# 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("//build/config/ui.gni")
|
|
import("//services/service_manager/public/cpp/service.gni")
|
|
import("//services/service_manager/public/service_manifest.gni")
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
import("//tools/grit/repack.gni")
|
|
|
|
source_set("lib") {
|
|
sources = [
|
|
"quick_launch_application.cc",
|
|
"quick_launch_application.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mash/public/mojom",
|
|
"//mojo/public/cpp/bindings",
|
|
"//services/catalog/public/mojom",
|
|
"//services/service_manager/public/cpp",
|
|
"//services/service_manager/public/mojom",
|
|
"//ui/views",
|
|
"//ui/views/mus:for_mojo_application",
|
|
"//url",
|
|
]
|
|
}
|
|
|
|
service("quick_launch_app") {
|
|
sources = [
|
|
"main.cc",
|
|
]
|
|
|
|
deps = [
|
|
":lib",
|
|
"//services/service_manager/public/cpp",
|
|
"//ui/views/mus:for_mojo_application",
|
|
]
|
|
|
|
data_deps = [
|
|
"//ui/views/mus:resources",
|
|
]
|
|
}
|
|
|
|
service_manifest("manifest") {
|
|
name = "quick_launch_app"
|
|
source = "manifest.json"
|
|
}
|