| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Deletes libsystem.dylib from the build dir, since it shadows | 5 # Deletes libsystem.dylib from the build dir, since it shadows |
| 6 # /usr/lib/libSystem.dylib on macOS. | 6 # /usr/lib/libSystem.dylib on macOS. |
| 7 # TODO(thakis): Remove this after a while. | 7 # TODO(thakis): Remove this after a while. |
| 8 action("clean_up_old_dylib") { | 8 action("clean_up_old_dylib") { |
| 9 script = "//build/rm.py" | 9 script = "//build/rm.py" |
| 10 stamp = "$target_gen_dir/clean_up_stamp" | 10 stamp = "$target_gen_dir/clean_up_stamp" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 component("system") { | 22 component("system") { |
| 23 output_name = "mojo_public_system_cpp" | 23 output_name = "mojo_public_system_cpp" |
| 24 | 24 |
| 25 sources = [ | 25 sources = [ |
| 26 "buffer.cc", | 26 "buffer.cc", |
| 27 "buffer.h", | 27 "buffer.h", |
| 28 "core.h", | 28 "core.h", |
| 29 "data_pipe.h", | 29 "data_pipe.h", |
| 30 "functions.h", | 30 "functions.h", |
| 31 "handle.h", | 31 "handle.h", |
| 32 "handle_signals_state.h", |
| 32 "message.h", | 33 "message.h", |
| 33 "message_pipe.h", | 34 "message_pipe.h", |
| 34 "platform_handle.cc", | 35 "platform_handle.cc", |
| 35 "platform_handle.h", | 36 "platform_handle.h", |
| 36 "simple_watcher.cc", | 37 "simple_watcher.cc", |
| 37 "simple_watcher.h", | 38 "simple_watcher.h", |
| 38 "system_export.h", | 39 "system_export.h", |
| 39 "watcher.cc", | 40 "watcher.cc", |
| 40 "watcher.h", | 41 "watcher.h", |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 public_deps = [ | 44 public_deps = [ |
| 44 "//base", | 45 "//base", |
| 45 "//mojo/public/c/system", | 46 "//mojo/public/c/system", |
| 46 ] | 47 ] |
| 47 deps = [ | 48 deps = [ |
| 48 ":clean_up_old_dylib", | 49 ":clean_up_old_dylib", |
| 49 ] | 50 ] |
| 50 | 51 |
| 51 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] | 52 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] |
| 52 } | 53 } |
| OLD | NEW |