| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//remoting/remoting_srcs.gni") | 6 import("//remoting/remoting_srcs.gni") |
| 7 | 7 |
| 8 source_set("protocol") { | 8 source_set("protocol") { |
| 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
| 10 ".", | 10 ".", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//third_party/libjingle", | 21 "//third_party/libjingle", |
| 22 ] | 22 ] |
| 23 deps = [ | 23 deps = [ |
| 24 "//base", | 24 "//base", |
| 25 "//crypto", | 25 "//crypto", |
| 26 "//jingle:jingle_glue", | 26 "//jingle:jingle_glue", |
| 27 "//net", | 27 "//net", |
| 28 "//remoting/base", | 28 "//remoting/base", |
| 29 "//remoting/codec", | 29 "//remoting/codec", |
| 30 "//remoting/signaling", | 30 "//remoting/signaling", |
| 31 "//third_party/libyuv", |
| 31 ] | 32 ] |
| 32 | 33 |
| 33 if (!is_nacl) { | 34 if (!is_nacl) { |
| 34 sources += | 35 sources += |
| 35 rebase_path(remoting_srcs_gypi_values.remoting_protocol_nonnacl_sources, | 36 rebase_path(remoting_srcs_gypi_values.remoting_protocol_nonnacl_sources, |
| 36 ".", | 37 ".", |
| 37 "//remoting") | 38 "//remoting") |
| 38 | 39 |
| 39 if (enable_webrtc) { | 40 if (enable_webrtc) { |
| 40 deps += [ | 41 deps += [ |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "video_frame_pump_unittest.cc", | 124 "video_frame_pump_unittest.cc", |
| 124 "webrtc_transport_unittest.cc", | 125 "webrtc_transport_unittest.cc", |
| 125 ] | 126 ] |
| 126 | 127 |
| 127 deps = [ | 128 deps = [ |
| 128 ":test_support", | 129 ":test_support", |
| 129 "//testing/gmock", | 130 "//testing/gmock", |
| 130 "//testing/gtest", | 131 "//testing/gtest", |
| 131 ] | 132 ] |
| 132 } | 133 } |
| OLD | NEW |