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 15 matching lines...) Expand all Loading... |
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 "message.h", | 32 "message.h", |
33 "message_pipe.h", | 33 "message_pipe.h", |
34 "platform_handle.cc", | 34 "platform_handle.cc", |
35 "platform_handle.h", | 35 "platform_handle.h", |
| 36 "simple_watcher.cc", |
| 37 "simple_watcher.h", |
36 "system_export.h", | 38 "system_export.h", |
37 "watcher.cc", | 39 "watcher.cc", |
38 "watcher.h", | 40 "watcher.h", |
39 ] | 41 ] |
40 | 42 |
41 public_deps = [ | 43 public_deps = [ |
42 "//base", | 44 "//base", |
43 "//mojo/public/c/system", | 45 "//mojo/public/c/system", |
44 ] | 46 ] |
45 deps = [ | 47 deps = [ |
46 ":clean_up_old_dylib", | 48 ":clean_up_old_dylib", |
47 ] | 49 ] |
48 | 50 |
49 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] | 51 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] |
50 } | 52 } |
OLD | NEW |