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

Side by Side Diff: jingle/BUILD.gn

Issue 551933002: Mark gtest and gmock as testonly in GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@testonly
Patch Set: android Created 6 years, 3 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 | « ipc/BUILD.gn ('k') | media/BUILD.gn » ('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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 if (enable_webrtc || !is_android) { 7 if (enable_webrtc || !is_android) {
8 jingle_includes = exec_script("//build/gypi_to_gn.py", 8 jingle_includes = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("jingle.gypi") ], 9 [ rebase_path("jingle.gypi") ],
10 "scope", 10 "scope",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//third_party/expat", 83 "//third_party/expat",
84 "//url", 84 "//url",
85 ":jingle_glue", 85 ":jingle_glue",
86 "//third_party/libjingle", 86 "//third_party/libjingle",
87 ] 87 ]
88 forward_dependent_configs_from = [ "//third_party/libjingle" ] 88 forward_dependent_configs_from = [ "//third_party/libjingle" ]
89 } 89 }
90 90
91 # GYP version: jingle/jingle.gyp:notifier_test_util 91 # GYP version: jingle/jingle.gyp:notifier_test_util
92 static_library("notifier_test_util") { 92 static_library("notifier_test_util") {
93 testonly = true
93 sources = [ 94 sources = [
94 "notifier/base/fake_base_task.cc", 95 "notifier/base/fake_base_task.cc",
95 "notifier/base/fake_base_task.h", 96 "notifier/base/fake_base_task.h",
96 "notifier/listener/fake_push_client.cc", 97 "notifier/listener/fake_push_client.cc",
97 "notifier/listener/fake_push_client.h", 98 "notifier/listener/fake_push_client.h",
98 "notifier/listener/fake_push_client_observer.cc", 99 "notifier/listener/fake_push_client_observer.cc",
99 "notifier/listener/fake_push_client_observer.h", 100 "notifier/listener/fake_push_client_observer.h",
100 ] 101 ]
101 deps = [ 102 deps = [
102 ":notifier", 103 ":notifier",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "notifier/base/notifier_options.h", 181 "notifier/base/notifier_options.h",
181 ] 182 ]
182 deps = [ 183 deps = [
183 "//base", 184 "//base",
184 "//net" 185 "//net"
185 ] 186 ]
186 } 187 }
187 188
188 source_set("notifier_test_util") { } 189 source_set("notifier_test_util") { }
189 } 190 }
OLDNEW
« no previous file with comments | « ipc/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698