blob: 07fc688f41ee3bcbbcabb64fec623844d5addbf6 [file] [log] [blame]
# 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.
# Deletes libsystem.dylib from the build dir, since it shadows
# /usr/lib/libSystem.dylib on macOS.
# TODO(thakis): Remove this after a while.
action("clean_up_old_dylib") {
script = "//build/rm.py"
stamp = "$target_gen_dir/clean_up_stamp"
outputs = [
stamp,
]
args = [
"--stamp",
rebase_path(stamp, root_build_dir),
"-f",
"libsystem.dylib",
]
}
component("system") {
output_name = "mojo_public_system_cpp"
sources = [
"buffer.cc",
"buffer.h",
"core.h",
"data_pipe.h",
"data_pipe_drainer.cc",
"data_pipe_drainer.h",
"data_pipe_utils.cc",
"data_pipe_utils.h",
"file_data_pipe_producer.cc",
"file_data_pipe_producer.h",
"functions.h",
"handle.h",
"handle_signal_tracker.cc",
"handle_signal_tracker.h",
"handle_signals_state.h",
"invitation.cc",
"invitation.h",
"isolated_connection.cc",
"isolated_connection.h",
"message.h",
"message_pipe.cc",
"message_pipe.h",
"platform_handle.cc",
"platform_handle.h",
"scope_to_message_pipe.cc",
"scope_to_message_pipe.h",
"simple_watcher.cc",
"simple_watcher.h",
"string_data_pipe_producer.cc",
"string_data_pipe_producer.h",
"system_export.h",
"trap.cc",
"trap.h",
"wait.cc",
"wait.h",
"wait_set.cc",
"wait_set.h",
]
if (is_nacl) {
# This file refers to a the base::File::File(path, flags)
# constructor which does not exist in nacl builds, and the code
# here is unused in nacl builds anyway.
sources -= [ "file_data_pipe_producer.cc" ]
}
public_deps = [
"//base",
"//mojo/public/c/system",
"//mojo/public/cpp/platform",
]
deps = [
":clean_up_old_dylib",
]
defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ]
}