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", | |
38 "system_export.h", | 36 "system_export.h", |
39 "watcher.cc", | 37 "watcher.cc", |
40 "watcher.h", | 38 "watcher.h", |
41 ] | 39 ] |
42 | 40 |
43 public_deps = [ | 41 public_deps = [ |
44 "//base", | 42 "//base", |
45 "//mojo/public/c/system", | 43 "//mojo/public/c/system", |
46 ] | 44 ] |
47 deps = [ | 45 deps = [ |
48 ":clean_up_old_dylib", | 46 ":clean_up_old_dylib", |
49 ] | 47 ] |
50 | 48 |
51 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] | 49 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] |
52 } | 50 } |
OLD | NEW |