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

Unified Diff: mandoline/services/core_services/BUILD.gn

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mandoline/app/register_local_aliases.cc ('k') | mandoline/services/core_services/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/services/core_services/BUILD.gn
diff --git a/mandoline/services/core_services/BUILD.gn b/mandoline/services/core_services/BUILD.gn
deleted file mode 100644
index 45dd6dbd0095c80b6d3eb225c19f4858e41f437b..0000000000000000000000000000000000000000
--- a/mandoline/services/core_services/BUILD.gn
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2015 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.
-#
-# core_services should be thought of as a bundle of many of the services which
-# we ship with.
-
-import("//build/config/ui.gni")
-import("//build/toolchain/toolchain.gni")
-import("//mojo/public/mojo_application.gni")
-
-mojo_native_application("core_services") {
- deps = [
- ":sources",
- ]
- if (is_win) {
- deps += [
- ":copy_files",
- "//third_party/angle:libEGL",
- "//third_party/angle:libGLESv2",
- ]
- }
-}
-
-if (is_win) {
- copy("copy_files") {
- sources = [
- "$root_shlib_dir/libEGL.dll",
- "$root_shlib_dir/libGLESv2.dll",
- ]
- outputs = [
- "$root_out_dir/core_services/{{source_file_part}}",
- ]
-
- deps = [
- "//third_party/angle:libEGL",
- "//third_party/angle:libGLESv2",
- ]
- }
-}
-
-source_set("sources") {
- sources = [
- "application_delegate_factory.h",
- "application_delegate_factory_linux.cc",
- "core_services_application_delegate.cc",
- "main.cc",
- ]
-
- deps = [
- "//base",
- "//components/clipboard:lib",
- "//components/filesystem:lib",
- "//components/web_view:lib",
- "//mojo/logging",
- "//mojo/message_pump",
- "//mojo/public/cpp/bindings",
- "//mojo/services/tracing:lib",
- "//mojo/services/tracing/public/cpp",
- "//mojo/shell/public/cpp",
- "//third_party/icu",
- "//url",
- ]
-
- if (!is_android) {
- sources += [ "application_delegate_factory_notandroid.cc" ]
- deps += [
- "//components/mus:lib",
- "//components/resource_provider:lib",
- "//mojo/services/network:lib",
- ]
- }
-
- if (is_linux) {
- deps += [ "//components/font_service:lib" ]
- } else {
- sources += [ "application_delegate_factory_default.cc" ]
- }
-}
« no previous file with comments | « mandoline/app/register_local_aliases.cc ('k') | mandoline/services/core_services/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698