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