| 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_base.gyp:mojo_environment_chromium | 5 # GYP version: mojo_base.gyp:mojo_environment_chromium |
| 6 source_set("chromium") { | 6 source_set("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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 defines = [ "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION" ] | 50 defines = [ "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION" ] |
| 51 | 51 |
| 52 public_configs = | 52 public_configs = |
| 53 [ "//third_party/mojo/src/mojo/public/build/config:mojo_sdk" ] | 53 [ "//third_party/mojo/src/mojo/public/build/config:mojo_sdk" ] |
| 54 | 54 |
| 55 deps = [ | 55 deps = [ |
| 56 "//base", | 56 "//base", |
| 57 "//base/third_party/dynamic_annotations", | 57 "//base/third_party/dynamic_annotations", |
| 58 "//mojo/message_pump", | 58 "//mojo/common:common_base", |
| 59 "//third_party/mojo/src/mojo/public/c/system:for_component", | |
| 60 "//third_party/mojo/src/mojo/public/cpp/environment:environment", | 59 "//third_party/mojo/src/mojo/public/cpp/environment:environment", |
| 61 ] | 60 ] |
| 62 } | 61 } |
| OLD | NEW |