blob: 774afe429388c87da0c26d266141cec4608bfa68 [file] [log] [blame]
# Copyright 2018 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.
component("embedder") {
output_name = "mojo_core_embedder"
public = [
"configuration.h",
"embedder.h",
"scoped_ipc_support.h",
]
sources = [
"embedder.cc",
"scoped_ipc_support.cc",
]
if (is_mac && !is_ios) {
public += [ "default_mach_broker.h" ]
sources += [ "default_mach_broker.cc" ]
}
defines = [ "IS_MOJO_CORE_EMBEDDER_IMPL" ]
public_deps = [
"//base",
]
deps = [
"//mojo/core:embedder_internal",
"//mojo/public/c/system",
]
}