| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 69 |
| 70 public_deps = [ |
| 71 "//base", |
| 72 "//net", |
| 73 "//remoting/proto", |
| 74 "//third_party/protobuf:protobuf_lite", |
| 75 ] |
| 70 deps = [ | 76 deps = [ |
| 71 "//base", | |
| 72 "//base/third_party/dynamic_annotations", | 77 "//base/third_party/dynamic_annotations", |
| 73 "//media", | 78 "//media", |
| 74 "//media:shared_memory_support", | 79 "//media:shared_memory_support", |
| 75 "//net", | |
| 76 "//remoting/proto", | |
| 77 "//remoting/resources", | 80 "//remoting/resources", |
| 78 #"//third_party/libvpx", TODO(GYP) | 81 #"//third_party/libvpx", TODO(GYP) |
| 79 "//third_party/libyuv", | 82 "//third_party/libyuv", |
| 80 "//third_party/opus", | 83 "//third_party/opus", |
| 81 "//third_party/protobuf:protobuf_lite", | |
| 82 "//third_party/webrtc/modules/desktop_capture", | 84 "//third_party/webrtc/modules/desktop_capture", |
| 83 "//ui/base", | 85 "//ui/base", |
| 84 "//ui/gfx", | 86 "//ui/gfx", |
| 85 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
| 86 ] | 88 ] |
| 87 | 89 |
| 88 forward_dependent_configs_from = [ | |
| 89 "//base", | |
| 90 "//net", | |
| 91 "//remoting/proto", | |
| 92 "//third_party/protobuf:protobuf_lite", | |
| 93 ] | |
| 94 } | 90 } |
| 95 | 91 |
| OLD | NEW |