| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//v8", | 76 "//v8", |
| 77 "//webkit/common/gpu", | 77 "//webkit/common/gpu", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 if (enable_plugins) { | 80 if (enable_plugins) { |
| 81 deps += [ "//content/ppapi_plugin" ] | 81 deps += [ "//content/ppapi_plugin" ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 if (enable_webrtc) { | 84 if (enable_webrtc) { |
| 85 sources += [ | 85 sources += [ |
| 86 "../renderer/media/mock_data_channel_impl.cc", |
| 87 "../renderer/media/mock_data_channel_impl.h", |
| 86 "../renderer/media/mock_media_stream_dispatcher.cc", | 88 "../renderer/media/mock_media_stream_dispatcher.cc", |
| 87 "../renderer/media/mock_media_stream_dispatcher.h", | 89 "../renderer/media/mock_media_stream_dispatcher.h", |
| 88 "../renderer/media/mock_data_channel_impl.cc", | |
| 89 "../renderer/media/mock_data_channel_impl.h", | |
| 90 "../renderer/media/mock_peer_connection_impl.cc", | 90 "../renderer/media/mock_peer_connection_impl.cc", |
| 91 "../renderer/media/mock_peer_connection_impl.h", | 91 "../renderer/media/mock_peer_connection_impl.h", |
| 92 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 92 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
| 93 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 93 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
| 94 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 94 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
| 95 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 95 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
| 96 ] | 96 ] |
| 97 | 97 |
| 98 deps += [ | 98 deps += [ |
| 99 "//third_party/libjingle:libjingle_webrtc", | 99 "//third_party/libjingle:libjingle_webrtc", |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "//content/public/common", | 702 "//content/public/common", |
| 703 "//testing/gtest", | 703 "//testing/gtest", |
| 704 "//third_party/WebKit/public:blink", | 704 "//third_party/WebKit/public:blink", |
| 705 "//ui/base", | 705 "//ui/base", |
| 706 "//ui/gfx", | 706 "//ui/gfx", |
| 707 "//ui/gfx/geometry", | 707 "//ui/gfx/geometry", |
| 708 "//ui/gl", | 708 "//ui/gl", |
| 709 ] | 709 ] |
| 710 } | 710 } |
| 711 } | 711 } |
| OLD | NEW |