mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
40 lines
1009 B
Plaintext
40 lines
1009 B
Plaintext
# Copyright 2014 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")
|
|
|
|
service("views_examples") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"views_examples.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mash/public/mojom",
|
|
"//mojo/public/cpp/bindings",
|
|
"//services/service_manager/public/cpp",
|
|
"//services/ui/public/interfaces",
|
|
"//skia",
|
|
"//ui/gfx",
|
|
"//ui/gfx/geometry",
|
|
"//ui/gfx/geometry/mojo",
|
|
"//ui/views",
|
|
"//ui/views/examples:views_examples_lib",
|
|
"//ui/views/mus:for_mojo_application",
|
|
]
|
|
|
|
resources = [ "$root_out_dir/views_mus_resources.pak" ]
|
|
}
|
|
|
|
service_manifest("manifest") {
|
|
name = "views_examples"
|
|
source = "manifest.json"
|
|
}
|