| 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("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("protocol") { | 7 source_set("protocol") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
| 9 ".", | 9 ".", |
| 10 "//remoting") | 10 "//remoting") |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "//jingle:jingle_glue", | 25 "//jingle:jingle_glue", |
| 26 "//net", | 26 "//net", |
| 27 "//remoting/base", | 27 "//remoting/base", |
| 28 "//remoting/codec", | 28 "//remoting/codec", |
| 29 "//remoting/signaling", | 29 "//remoting/signaling", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 if (is_nacl) { | 32 if (is_nacl) { |
| 33 sources -= [ | 33 sources -= [ |
| 34 "chromium_port_allocator.cc", | 34 "chromium_port_allocator.cc", |
| 35 "chromium_port_allocator_factory.cc", |
| 35 "chromium_socket_factory.cc", | 36 "chromium_socket_factory.cc", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| 38 } | 39 } |
| 39 | 40 |
| 40 source_set("test_support") { | 41 source_set("test_support") { |
| 41 testonly = true | 42 testonly = true |
| 42 | 43 |
| 43 sources = [ | 44 sources = [ |
| 44 "fake_authenticator.cc", | 45 "fake_authenticator.cc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "third_party_authenticator_unittest.cc", | 96 "third_party_authenticator_unittest.cc", |
| 96 "v2_authenticator_unittest.cc", | 97 "v2_authenticator_unittest.cc", |
| 97 ] | 98 ] |
| 98 | 99 |
| 99 deps = [ | 100 deps = [ |
| 100 ":test_support", | 101 ":test_support", |
| 101 "//testing/gmock", | 102 "//testing/gmock", |
| 102 "//testing/gtest", | 103 "//testing/gtest", |
| 103 ] | 104 ] |
| 104 } | 105 } |
| OLD | NEW |