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

Side by Side Diff: content/test/BUILD.gn

Issue 843583006: GN: Add -Wl,-z defs on linux and fix errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 10
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "//cc/blink", 214 "//cc/blink",
215 "//content/public/common", 215 "//content/public/common",
216 "//skia", 216 "//skia",
217 "//v8", 217 "//v8",
218 "//ui/accessibility:ax_gen", 218 "//ui/accessibility:ax_gen",
219 ] 219 ]
220 220
221 if (is_android) { 221 if (is_android) {
222 deps += [ ":jni" ] 222 deps += [ ":jni" ]
223 } 223 }
224
225 if (!enable_webrtc) {
226 sources -= [
227 "test_media_stream_renderer_factory.cc",
228 "test_media_stream_renderer_factory.h",
229 ]
230 }
224 } 231 }
225 232
226 if (is_android) { 233 if (is_android) {
227 import("//build/config/android/rules.gni") 234 import("//build/config/android/rules.gni")
228 235
229 generate_jni("jni") { 236 generate_jni("jni") {
230 sources = [ 237 sources = [
231 "../public/test/android/javatests/src/org/chromium/content/browser/test/ NestedSystemMessageHandler.java", 238 "../public/test/android/javatests/src/org/chromium/content/browser/test/ NestedSystemMessageHandler.java",
232 ] 239 ]
233 jni_package = "content/public/test" 240 jni_package = "content/public/test"
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 "//content/public/common", 686 "//content/public/common",
680 "//testing/gtest", 687 "//testing/gtest",
681 "//third_party/WebKit/public:blink", 688 "//third_party/WebKit/public:blink",
682 "//ui/base", 689 "//ui/base",
683 "//ui/gfx", 690 "//ui/gfx",
684 "//ui/gfx/geometry", 691 "//ui/gfx/geometry",
685 "//ui/gl", 692 "//ui/gl",
686 ] 693 ]
687 } 694 }
688 } 695 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698