| 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 static_library("base") { | 5 static_library("base") { |
| 6 sources = [ | 6 sources = [ |
| 7 "auth_token_util.cc", | 7 "auth_token_util.cc", |
| 8 "auth_token_util.h", | 8 "auth_token_util.h", |
| 9 "auto_thread.cc", | 9 "auto_thread.cc", |
| 10 "auto_thread.h", | 10 "auto_thread.h", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//ui/gfx", | 84 "//ui/gfx", |
| 85 "//ui/gfx/geometry", | 85 "//ui/gfx/geometry", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 forward_dependent_configs_from = [ | 88 forward_dependent_configs_from = [ |
| 89 "//base", | 89 "//base", |
| 90 "//net", | 90 "//net", |
| 91 "//remoting/proto", | 91 "//remoting/proto", |
| 92 "//third_party/protobuf:protobuf_lite", | 92 "//third_party/protobuf:protobuf_lite", |
| 93 ] | 93 ] |
| 94 | |
| 95 # TODO(GYP) This config should be a direct_dependent_config of | |
| 96 # //third_party/webrtc/modules/desktop_capture so we shouldn't have to | |
| 97 # include it here. Remove this line when the direct_dependent_config is set. | |
| 98 configs += [ "//third_party/webrtc:common_inherited_config" ] | |
| 99 } | 94 } |
| 100 | 95 |
| OLD | NEW |