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

Unified Diff: chromeos/components/tether/BUILD.gn

Issue 2545923005: Create Tether Chrome OS component and add a skeleton Initializer class. (Closed)
Patch Set: Added test dependency on //base/test:test_support. Created 4 years 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 | « chromeos/components/run_all_unittests.cc ('k') | chromeos/components/tether/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/BUILD.gn
diff --git a/chromeos/components/tether/BUILD.gn b/chromeos/components/tether/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..5ea6be44c519d60bbeab2177ba295466d5a3c209
--- /dev/null
+++ b/chromeos/components/tether/BUILD.gn
@@ -0,0 +1,44 @@
+# Copyright 2016 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.
+
+assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
+
+static_library("tether") {
+ sources = [
+ "initializer.cc",
+ "initializer.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
+
+static_library("test_support") {
+ testonly = true
+
+ sources = []
+
+ public_deps = [
+ ":tether",
+ ]
+
+ deps = [
+ "//base",
+ "//testing/gmock",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ sources = []
+
+ deps = [
+ ":test_support",
+ ":tether",
+ "//base/test:test_support",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « chromeos/components/run_all_unittests.cc ('k') | chromeos/components/tether/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698