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", |
| 11 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) |
| 12 "../public/cpp/environment/logging.h", |
| 13 "../public/cpp/environment/lib/logging.cc", |
11 ] | 14 ] |
12 | 15 |
13 deps = [ | 16 deps = [ |
14 ":chromium_impl", | 17 ":chromium_impl", |
15 "//mojo/common", | 18 "//mojo/common", |
16 ] | 19 ] |
17 | 20 |
18 forward_dependent_configs_from = [ | 21 forward_dependent_configs_from = [ |
19 ":chromium_impl", | 22 ":chromium_impl", |
20 ] | 23 ] |
(...skipping 14 matching lines...) Expand all Loading... |
35 defines = [ | 38 defines = [ |
36 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", | 39 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", |
37 ] | 40 ] |
38 | 41 |
39 deps = [ | 42 deps = [ |
40 "//base", | 43 "//base", |
41 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
42 "//mojo/common", | 45 "//mojo/common", |
43 ] | 46 ] |
44 } | 47 } |
OLD | NEW |