OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
6 | 6 |
7 source_set("codec") { | 7 source_set("codec") { |
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, |
9 ".", | 9 ".", |
10 "//remoting") | 10 "//remoting") |
11 | 11 |
12 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 12 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 "//base/third_party/dynamic_annotations", | 15 "//base/third_party/dynamic_annotations", |
16 "//media", | 16 "//media", |
17 "//media:shared_memory_support", | 17 "//media:shared_memory_support", |
18 "//remoting/proto", | 18 "//remoting/proto", |
19 "//third_party/libvpx_new", | 19 "//third_party/libvpx", |
20 "//third_party/libyuv", | 20 "//third_party/libyuv", |
21 "//third_party/opus", | 21 "//third_party/opus", |
22 "//third_party/webrtc/modules/desktop_capture:primitives", | 22 "//third_party/webrtc/modules/desktop_capture:primitives", |
23 ] | 23 ] |
24 | 24 |
25 if (is_nacl) { | 25 if (is_nacl) { |
26 deps -= [ | 26 deps -= [ |
27 "//media", | 27 "//media", |
28 "//media:shared_memory_support", | 28 "//media:shared_memory_support", |
29 ] | 29 ] |
(...skipping 28 matching lines...) Expand all Loading... |
58 ] | 58 ] |
59 | 59 |
60 deps = [ | 60 deps = [ |
61 ":codec", | 61 ":codec", |
62 "//base", | 62 "//base", |
63 "//remoting/proto", | 63 "//remoting/proto", |
64 "//testing/gtest", | 64 "//testing/gtest", |
65 "//third_party/webrtc/modules/desktop_capture", | 65 "//third_party/webrtc/modules/desktop_capture", |
66 ] | 66 ] |
67 } | 67 } |
OLD | NEW |