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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « chromeos/components/run_all_unittests.cc ('k') | chromeos/components/tether/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
6
7 static_library("tether") {
8 sources = [
9 "initializer.cc",
10 "initializer.h",
11 ]
12
13 deps = [
14 "//base",
15 ]
16 }
17
18 static_library("test_support") {
19 testonly = true
20
21 sources = []
22
23 public_deps = [
24 ":tether",
25 ]
26
27 deps = [
28 "//base",
29 "//testing/gmock",
30 ]
31 }
32
33 source_set("unit_tests") {
34 testonly = true
35
36 sources = []
37
38 deps = [
39 ":test_support",
40 ":tether",
41 "//base/test:test_support",
42 "//testing/gtest",
43 ]
44 }
OLDNEW
« 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