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

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

Issue 495223002: GN build rules for all unit test targets in mojo/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix copyright header Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/services/window_manager/BUILD.gn ('k') | no next file » | 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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 executable("mojo_shell") { 8 executable("mojo_shell") {
9 deps = [ 9 deps = [
10 ":lib", 10 ":lib",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "shell_test_main.cc", 157 "shell_test_main.cc",
158 ] 158 ]
159 159
160 if (is_android) { 160 if (is_android) {
161 deps += [ 161 deps += [
162 # TODO(GYP): 162 # TODO(GYP):
163 #'../testing/android/native_test.gyp:native_test_native_code', 163 #'../testing/android/native_test.gyp:native_test_native_code',
164 ] 164 ]
165 } 165 }
166 } 166 }
167
168 # GYP version: mojo/mojo.gyp:mojo_shell_test_support
169 source_set("test_support") {
170 sources = [
171 "shell_test_helper.cc",
172 "shell_test_helper.h",
173 ]
174
175 deps = [
176 ":lib",
177 "//base",
178 "//base:base_static",
179 "//mojo/application_manager",
180 "//mojo/system",
181 "//url",
182 ]
183 }
OLDNEW
« no previous file with comments | « mojo/services/window_manager/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698