OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |