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 source_set("environment") { | 5 source_set("environment") { |
6 sources = [ | 6 sources = [ |
| 7 "async_waiter.h", |
7 "logging.h", | 8 "logging.h", |
8 "environment.h", | 9 "environment.h", |
9 ] | 10 ] |
10 | 11 |
11 public_deps = [ "//mojo/public/c/environment" ] | 12 public_deps = [ "//mojo/public/c/environment" ] |
12 | 13 |
13 deps = [ "//mojo/public/cpp/system" ] | 14 deps = [ |
| 15 "//mojo/public/cpp/bindings:callback", |
| 16 "//mojo/public/cpp/system", |
| 17 ] |
14 } | 18 } |
15 | 19 |
16 source_set("standalone") { | 20 source_set("standalone") { |
17 sources = [ | 21 sources = [ |
| 22 "lib/async_waiter.cc", |
18 "lib/default_async_waiter.cc", | 23 "lib/default_async_waiter.cc", |
19 "lib/default_async_waiter.h", | 24 "lib/default_async_waiter.h", |
20 "lib/default_logger.cc", | 25 "lib/default_logger.cc", |
21 "lib/default_logger.h", | 26 "lib/default_logger.h", |
22 "lib/environment.cc", | 27 "lib/environment.cc", |
23 "lib/logging.cc", | 28 "lib/logging.cc", |
24 ] | 29 ] |
25 | 30 |
26 public_deps = [ ":environment" ] | 31 public_deps = [ ":environment" ] |
27 | 32 |
28 deps = [ | 33 deps = [ |
29 "//mojo/public/c/environment", | 34 "//mojo/public/c/environment", |
30 "//mojo/public/cpp/utility", | 35 "//mojo/public/cpp/utility", |
31 ] | 36 ] |
32 } | 37 } |
OLD | NEW |