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

Side by Side Diff: mojo/shell/public/cpp/BUILD.gn

Issue 1758633002: Convert Connect apptest to a unittest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@25tests
Patch Set: . Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | mojo/shell/public/cpp/lib/shell_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # GYP version: mojo/mojo_base.gyp:mojo_application_base 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base
6 source_set("cpp") { 6 source_set("cpp") {
7 public_deps = [ 7 public_deps = [
8 ":init_commandline", 8 ":init_commandline",
9 ":sources", 9 ":sources",
10 ] 10 ]
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "//base/test:test_support", 85 "//base/test:test_support",
86 "//mojo/logging", 86 "//mojo/logging",
87 "//mojo/public/cpp/bindings", 87 "//mojo/public/cpp/bindings",
88 "//mojo/public/cpp/environment", 88 "//mojo/public/cpp/environment",
89 "//mojo/public/cpp/system", 89 "//mojo/public/cpp/system",
90 "//mojo/shell/public/interfaces:interfaces_cpp_sources", 90 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
91 ] 91 ]
92 92
93 data_deps = [] 93 data_deps = []
94 } 94 }
95
96 source_set("shell_test_support") {
97 testonly = true
98 sources = [
99 "lib/shell_test.cc",
100 "shell_test.h",
101 ]
102
103 public_deps = [
104 ":cpp",
105 "//testing/gtest",
106 ]
107
108 deps = [
109 "//base",
110 "//base/test:test_support",
111 "//mojo/logging",
112 "//mojo/public/cpp/bindings",
113 "//mojo/public/cpp/environment",
114 "//mojo/public/cpp/system",
115 "//mojo/shell/background:lib",
116 "//mojo/shell/public/interfaces:interfaces_cpp_sources",
117 ]
118
119 data_deps = []
120 }
OLDNEW
« no previous file with comments | « no previous file | mojo/shell/public/cpp/lib/shell_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698