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 # GYP version: mojo.gyp:mojo_environment_chromium | 5 # GYP version: mojo.gyp:mojo_environment_chromium |
6 static_library("chromium") { | 6 static_library("chromium") { |
7 output_name = "mojo_environment_chromium" | 7 output_name = "mojo_environment_chromium" |
8 | 8 |
9 sources = [ | 9 sources = [ |
10 "environment.cc", | 10 "environment.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
28 output_name = "mojo_environment_impl" | 28 output_name = "mojo_environment_impl" |
29 visibility = "//mojo/*" | 29 visibility = "//mojo/*" |
30 | 30 |
31 sources = [ | 31 sources = [ |
32 "default_async_waiter_impl.cc", | 32 "default_async_waiter_impl.cc", |
33 "default_async_waiter_impl.h", | 33 "default_async_waiter_impl.h", |
34 "default_logger_impl.cc", | 34 "default_logger_impl.cc", |
35 "default_logger_impl.h", | 35 "default_logger_impl.h", |
36 ] | 36 ] |
37 | 37 |
38 defines = [ | |
39 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", | |
40 ] | |
41 | |
42 deps = [ | 38 deps = [ |
43 "//base", | 39 "//base", |
44 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
45 "//mojo/common", | 41 "//mojo/common", |
46 ] | 42 ] |
47 } | 43 } |
OLD | NEW |