| 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("signaling") { | 7 source_set("signaling") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources, |
| 9 ".", | 9 ".", |
| 10 "//remoting") | 10 "//remoting") |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 deps = [ | 22 deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//crypto", | 24 "//crypto", |
| 25 "//jingle:jingle_glue", | 25 "//jingle:jingle_glue", |
| 26 "//net", | 26 "//net", |
| 27 "//remoting/base", | 27 "//remoting/base", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 if (is_nacl) { | 30 if (is_nacl) { |
| 31 sources -= [ | 31 sources -= [ |
| 32 "chromoting_event.cc", | |
| 33 "log_to_server.cc", | 32 "log_to_server.cc", |
| 34 "server_log_entry.cc", | 33 "server_log_entry.cc", |
| 35 "telemetry_log_writer.cc", | |
| 36 "xmpp_signal_strategy.cc", | 34 "xmpp_signal_strategy.cc", |
| 37 ] | 35 ] |
| 38 } | 36 } |
| 39 } | 37 } |
| 40 | 38 |
| 41 source_set("test_support") { | 39 source_set("test_support") { |
| 42 testonly = true | 40 testonly = true |
| 43 | 41 |
| 44 sources = [ | 42 sources = [ |
| 45 "fake_signal_strategy.cc", | 43 "fake_signal_strategy.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 57 source_set("unit_tests") { | 55 source_set("unit_tests") { |
| 58 testonly = true | 56 testonly = true |
| 59 | 57 |
| 60 sources = [ | 58 sources = [ |
| 61 "iq_sender_unittest.cc", | 59 "iq_sender_unittest.cc", |
| 62 "jid_util_unittest.cc", | 60 "jid_util_unittest.cc", |
| 63 "log_to_server_unittest.cc", | 61 "log_to_server_unittest.cc", |
| 64 "push_notification_subscriber_unittest.cc", | 62 "push_notification_subscriber_unittest.cc", |
| 65 "server_log_entry_unittest.cc", | 63 "server_log_entry_unittest.cc", |
| 66 "server_log_entry_unittest.h", | 64 "server_log_entry_unittest.h", |
| 67 "telemetry_log_writer_unittest.cc", | |
| 68 "xmpp_login_handler_unittest.cc", | 65 "xmpp_login_handler_unittest.cc", |
| 69 "xmpp_signal_strategy_unittest.cc", | 66 "xmpp_signal_strategy_unittest.cc", |
| 70 "xmpp_stream_parser_unittest.cc", | 67 "xmpp_stream_parser_unittest.cc", |
| 71 ] | 68 ] |
| 72 | 69 |
| 73 deps = [ | 70 deps = [ |
| 74 ":test_support", | 71 ":test_support", |
| 75 "//testing/gmock", | 72 "//testing/gmock", |
| 76 "//testing/gtest", | 73 "//testing/gtest", |
| 77 ] | 74 ] |
| 78 } | 75 } |
| OLD | NEW |