blob: 6307859e4866245f852125e98eb63c1940e72206 [file] [log] [blame]
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
# This component is for code that is to run in the app shim process.
component("browser") {
assert(is_mac)
sources = [
"application_host.h",
"application_host.mm",
"ns_view_ids.cc",
"ns_view_ids.h",
"remote_cocoa_browser_export.h",
"scoped_cg_window_id.cc",
"scoped_cg_window_id.h",
"window.h",
"window.mm",
]
defines = [ "REMOTE_COCOA_BROWSER_IMPLEMENTATION" ]
deps = [
"//base",
"//components/remote_cocoa/common:mojo",
"//components/viz/common",
"//mojo/public/cpp/bindings",
"//ui/gfx",
]
frameworks = [ "Cocoa.framework" ]
}