Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: remoting/signaling/BUILD.gn

Issue 1228283004: Cleanup inconsistencies between GN and GYP in //remoting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/remoting_test.gypi ('k') | remoting/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/BUILD.gn
diff --git a/remoting/signaling/BUILD.gn b/remoting/signaling/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..0b33cdb41beae8ccc12ef790ac74dce516d58322
--- /dev/null
+++ b/remoting/signaling/BUILD.gn
@@ -0,0 +1,67 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//remoting/remoting_srcs.gni")
+
+source_set("signaling") {
+ sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources,
+ ".",
+ "//remoting")
+
+ configs += [
+ "//build/config/compiler:no_size_t_to_int_warning",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
+
+ public_deps = [
+ "//remoting/proto",
+ "//third_party/libjingle",
+ ]
+
+ deps = [
+ "//base",
+ "//crypto",
+ "//jingle:jingle_glue",
+ "//net",
+ "//remoting/base",
+ ]
+}
+
+source_set("test_support") {
+ testonly = true
+
+ sources = [
+ "fake_signal_strategy.cc",
+ "fake_signal_strategy.h",
+ "mock_signal_strategy.cc",
+ "mock_signal_strategy.h",
+ ]
+
+ public_deps = [
+ ":signaling",
+ "//testing/gmock",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ sources = [
+ "iq_sender_unittest.cc",
+ "jid_util_unittest.cc",
+ "log_to_server_unittest.cc",
+ "push_notification_subscriber_unittest.cc",
+ "server_log_entry_unittest.cc",
+ "server_log_entry_unittest.h",
+ "xmpp_login_handler_unittest.cc",
+ "xmpp_signal_strategy_unittest.cc",
+ "xmpp_stream_parser_unittest.cc",
+ ]
+
+ deps = [
+ ":test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « remoting/remoting_test.gypi ('k') | remoting/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698