OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("environment") { | |
6 sources = [ | |
7 "async_waiter.h", | |
8 "environment.h", | |
9 "logging.h", | |
10 "task_tracker.h", | |
11 ] | |
12 | |
13 public_deps = [ | |
14 "//mojo/public/c/environment", | |
15 ] | |
16 | |
17 deps = [ | |
18 "//mojo/public/cpp/bindings:callback", | |
19 "//mojo/public/cpp/system", | |
20 ] | |
21 } | |
22 | |
23 source_set("standalone") { | |
24 sources = [ | |
25 "lib/async_waiter.cc", | |
26 "lib/default_async_waiter.cc", | |
27 "lib/default_async_waiter.h", | |
28 "lib/default_logger.cc", | |
29 "lib/default_logger.h", | |
30 "lib/default_task_tracker.cc", | |
31 "lib/default_task_tracker.h", | |
32 "lib/environment.cc", | |
33 "lib/logging.cc", | |
34 "lib/scoped_task_tracking.cc", | |
35 "lib/scoped_task_tracking.h", | |
36 ] | |
37 | |
38 public_deps = [ | |
39 ":environment", | |
40 ] | |
41 | |
42 deps = [ | |
43 "//mojo/public/c/environment", | |
44 "//mojo/public/cpp/system", | |
45 "//mojo/public/cpp/utility", | |
46 ] | |
47 } | |
OLD | NEW |