| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "../codec/video_decoder_vpx.cc", | 59 "../codec/video_decoder_vpx.cc", |
| 60 "../codec/video_decoder_vpx.h", | 60 "../codec/video_decoder_vpx.h", |
| 61 "../codec/video_encoder.h", | 61 "../codec/video_encoder.h", |
| 62 "../codec/video_encoder_verbatim.cc", | 62 "../codec/video_encoder_verbatim.cc", |
| 63 "../codec/video_encoder_verbatim.h", | 63 "../codec/video_encoder_verbatim.h", |
| 64 "../codec/video_encoder_vpx.cc", | 64 "../codec/video_encoder_vpx.cc", |
| 65 "../codec/video_encoder_vpx.h", | 65 "../codec/video_encoder_vpx.h", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 68 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 69 # TODO(GYP) Remove when WebRTC is converted. | |
| 70 configs += [ "//content:webrtc_stub_config" ] | |
| 71 | 69 |
| 72 deps = [ | 70 deps = [ |
| 73 "//base", | 71 "//base", |
| 74 "//base/third_party/dynamic_annotations", | 72 "//base/third_party/dynamic_annotations", |
| 75 "//media", | 73 "//media", |
| 76 "//media:shared_memory_support", | 74 "//media:shared_memory_support", |
| 77 "//net", | 75 "//net", |
| 78 "//remoting/proto", | 76 "//remoting/proto", |
| 79 "//remoting/resources", | 77 "//remoting/resources", |
| 80 #"//third_party/libvpx", TODO(GYP) | 78 #"//third_party/libvpx", TODO(GYP) |
| 81 "//third_party/libyuv", | 79 "//third_party/libyuv", |
| 82 "//third_party/opus", | 80 "//third_party/opus", |
| 83 "//third_party/protobuf:protobuf_lite", | 81 "//third_party/protobuf:protobuf_lite", |
| 84 #"//third_party/webrtc/modules/desktop_capture", TODO(GYP) | 82 "//third_party/webrtc/modules/desktop_capture", |
| 85 "//ui/base", | 83 "//ui/base", |
| 86 "//ui/gfx", | 84 "//ui/gfx", |
| 87 "//ui/gfx/geometry", | 85 "//ui/gfx/geometry", |
| 88 ] | 86 ] |
| 89 | 87 |
| 90 forward_dependent_configs_from = [ | 88 forward_dependent_configs_from = [ |
| 91 "//base", | 89 "//base", |
| 92 "//net", | 90 "//net", |
| 93 "//remoting/proto", | 91 "//remoting/proto", |
| 94 "//third_party/protobuf:protobuf_lite", | 92 "//third_party/protobuf:protobuf_lite", |
| 95 ] | 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" ] |
| 96 } | 99 } |
| 97 | 100 |
| OLD | NEW |