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

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

Issue 901273003: roll up of misc. gn work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « components/password_manager/content/renderer/BUILD.gn ('k') | device/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/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("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "//ui/surface", 74 "//ui/surface",
75 "//v8", 75 "//v8",
76 "//webkit/common/gpu", 76 "//webkit/common/gpu",
77 ] 77 ]
78 78
79 if (enable_plugins) { 79 if (enable_plugins) {
80 deps += [ "//content/ppapi_plugin" ] 80 deps += [ "//content/ppapi_plugin" ]
81 } 81 }
82 82
83 if (enable_webrtc) { 83 if (enable_webrtc) {
84 # TODO(GYP) remove this when libjingle is converted.
85 configs += [ "//third_party/libjingle:jingle_direct_dependent_configs" ]
86
87 sources += [ 84 sources += [
88 "../renderer/media/mock_media_stream_dispatcher.cc", 85 "../renderer/media/mock_media_stream_dispatcher.cc",
89 "../renderer/media/mock_media_stream_dispatcher.h", 86 "../renderer/media/mock_media_stream_dispatcher.h",
87 "../renderer/media/mock_data_channel_impl.cc",
88 "../renderer/media/mock_data_channel_impl.h",
90 "../renderer/media/mock_peer_connection_impl.cc", 89 "../renderer/media/mock_peer_connection_impl.cc",
91 "../renderer/media/mock_peer_connection_impl.h", 90 "../renderer/media/mock_peer_connection_impl.h",
92 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", 91 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc",
93 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", 92 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h",
94 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", 93 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc",
95 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", 94 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h",
96 ] 95 ]
97 96
98 deps += [ 97 deps += [
99 #"//third_party/libjingle:webrtc", TODO(GYP) 98 "//third_party/libjingle:libjingle_webrtc",
100 #"//third_party/libjingle:peerconnection", TODO(GYP) 99 "//third_party/libjingle:libpeerconnection",
101 "//third_party/webrtc/modules/video_capture", 100 "//third_party/webrtc/modules/video_capture",
102 ] 101 ]
103 } 102 }
104 if (!enable_plugins) { 103 if (!enable_plugins) {
105 sources -= [ "ppapi_unittest.cc" ] 104 sources -= [ "ppapi_unittest.cc" ]
106 } 105 }
107 106
108 if (use_glib) { 107 if (use_glib) {
109 configs += [ "//build/config/linux:glib" ] 108 configs += [ "//build/config/linux:glib" ]
110 } 109 }
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 "//content/public/common", 693 "//content/public/common",
695 "//testing/gtest", 694 "//testing/gtest",
696 "//third_party/WebKit/public:blink", 695 "//third_party/WebKit/public:blink",
697 "//ui/base", 696 "//ui/base",
698 "//ui/gfx", 697 "//ui/gfx",
699 "//ui/gfx/geometry", 698 "//ui/gfx/geometry",
700 "//ui/gl", 699 "//ui/gl",
701 ] 700 ]
702 } 701 }
703 } 702 }
OLDNEW
« no previous file with comments | « components/password_manager/content/renderer/BUILD.gn ('k') | device/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698