Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: mojo/public/cpp/system/BUILD.gn

Issue 2744943002: Mojo: Move waiting APIs to public library (Closed)
Patch Set: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 19 matching lines...) Expand all
30 "functions.h", 30 "functions.h",
31 "handle.h", 31 "handle.h",
32 "handle_signals_state.h", 32 "handle_signals_state.h",
33 "message.h", 33 "message.h",
34 "message_pipe.h", 34 "message_pipe.h",
35 "platform_handle.cc", 35 "platform_handle.cc",
36 "platform_handle.h", 36 "platform_handle.h",
37 "simple_watcher.cc", 37 "simple_watcher.cc",
38 "simple_watcher.h", 38 "simple_watcher.h",
39 "system_export.h", 39 "system_export.h",
40 "wait.cc",
41 "wait.h",
42 "wait_set.cc",
43 "wait_set.h",
40 "watcher.cc", 44 "watcher.cc",
41 "watcher.h", 45 "watcher.h",
42 ] 46 ]
43 47
44 public_deps = [ 48 public_deps = [
45 "//base", 49 "//base",
46 "//mojo/public/c/system", 50 "//mojo/public/c/system",
47 ] 51 ]
48 deps = [ 52 deps = [
49 ":clean_up_old_dylib", 53 ":clean_up_old_dylib",
50 ] 54 ]
51 55
52 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ] 56 defines = [ "MOJO_CPP_SYSTEM_IMPLEMENTATION" ]
53 } 57 }
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/struct_traits_unittest.cc ('k') | mojo/public/cpp/system/functions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698