| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 if (enable_plugins) { | 271 if (enable_plugins) { |
| 272 deps += [ | 272 deps += [ |
| 273 "//content/ppapi_plugin", | 273 "//content/ppapi_plugin", |
| 274 "//ppapi/host", | 274 "//ppapi/host", |
| 275 "//ppapi/proxy", | 275 "//ppapi/proxy", |
| 276 "//ppapi/proxy:test_support", | 276 "//ppapi/proxy:test_support", |
| 277 "//ppapi/shared_impl", | 277 "//ppapi/shared_impl", |
| 278 "//ppapi/shared_impl:test_support", | 278 "//ppapi/shared_impl:test_support", |
| 279 ] | 279 ] |
| 280 } else { | 280 } else { |
| 281 sources -= [ "ppapi_unittest.cc" ] | 281 sources -= [ |
| 282 "../public/test/ppapi_test_utils.cc", |
| 283 "ppapi_unittest.cc", |
| 284 ] |
| 282 } | 285 } |
| 283 | 286 |
| 284 if (enable_webrtc) { | 287 if (enable_webrtc) { |
| 285 sources += [ | 288 sources += [ |
| 286 "../renderer/media/mock_data_channel_impl.cc", | 289 "../renderer/media/mock_data_channel_impl.cc", |
| 287 "../renderer/media/mock_data_channel_impl.h", | 290 "../renderer/media/mock_data_channel_impl.h", |
| 288 "../renderer/media/mock_media_stream_dispatcher.cc", | 291 "../renderer/media/mock_media_stream_dispatcher.cc", |
| 289 "../renderer/media/mock_media_stream_dispatcher.h", | 292 "../renderer/media/mock_media_stream_dispatcher.h", |
| 290 "../renderer/media/mock_peer_connection_impl.cc", | 293 "../renderer/media/mock_peer_connection_impl.cc", |
| 291 "../renderer/media/mock_peer_connection_impl.h", | 294 "../renderer/media/mock_peer_connection_impl.h", |
| (...skipping 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1696 if (is_android) { | 1699 if (is_android) { |
| 1697 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1700 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1698 } | 1701 } |
| 1699 } | 1702 } |
| 1700 | 1703 |
| 1701 group("fuzzers") { | 1704 group("fuzzers") { |
| 1702 deps = [ | 1705 deps = [ |
| 1703 "//content/test/fuzzer", | 1706 "//content/test/fuzzer", |
| 1704 ] | 1707 ] |
| 1705 } | 1708 } |
| OLD | NEW |