mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
# 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.
|
|
|
|
# This is the part of the Chrome browser process responsible for launching and
|
|
# communicating with app_shim processes on Mac.
|
|
source_set("app_shim") {
|
|
sources = [
|
|
"app_shim_handler_mac.cc",
|
|
"app_shim_handler_mac.h",
|
|
"app_shim_host_mac.cc",
|
|
"app_shim_host_mac.h",
|
|
"app_shim_host_manager_mac.h",
|
|
"app_shim_host_manager_mac.mm",
|
|
"apps_page_shim_handler.h",
|
|
"apps_page_shim_handler.mm",
|
|
"extension_app_shim_handler_mac.cc",
|
|
"extension_app_shim_handler_mac.h",
|
|
"unix_domain_socket_acceptor.cc",
|
|
"unix_domain_socket_acceptor.h",
|
|
]
|
|
|
|
deps = [
|
|
"//apps",
|
|
"//chrome/browser/apps/platform_apps",
|
|
"//chrome/browser/extensions",
|
|
"//chrome/browser/web_applications/components",
|
|
"//chrome/browser/web_applications/extensions",
|
|
"//chrome/common",
|
|
"//chrome/common:app_mode_app_support",
|
|
"//chrome/common:constants",
|
|
"//chrome/common:mojo_bindings",
|
|
"//chrome/common:non_code_constants",
|
|
"//components/crx_file",
|
|
"//components/version_info",
|
|
"//content/public/browser",
|
|
"//content/public/common",
|
|
"//extensions/browser",
|
|
"//extensions/common",
|
|
]
|
|
}
|