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

Side by Side Diff: media/base/BUILD.gn

Issue 2068763002: Re-Reland: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable warning 4267 in Win capture.gyp (probs. lost in the previous relanding). Rebase Created 4 years, 6 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 configs += [ "//media:media_config" ] 394 configs += [ "//media:media_config" ]
395 deps = [ 395 deps = [
396 "//base", 396 "//base",
397 "//base/test:test_support", 397 "//base/test:test_support",
398 "//media", 398 "//media",
399 "//media:media_features", 399 "//media:media_features",
400 "//media:shared_memory_support", 400 "//media:shared_memory_support",
401 "//testing/gmock", 401 "//testing/gmock",
402 "//ui/gfx:test_support", 402 "//ui/gfx:test_support",
403 ] 403 ]
404 if (is_android) {
405 deps += [
406 # Needed to register capture Java/Jni objects. TODO(mcasas): Remove when
407 # the dependency to capture is not needed, see https://crbug.com/618718.
408 "//media/capture",
409 "//media/capture/video/android",
410 ]
411 }
404 } 412 }
405 413
406 source_set("unittests") { 414 source_set("unittests") {
407 testonly = true 415 testonly = true
408 sources = [ 416 sources = [
409 "audio_block_fifo_unittest.cc", 417 "audio_block_fifo_unittest.cc",
410 "audio_buffer_converter_unittest.cc", 418 "audio_buffer_converter_unittest.cc",
411 "audio_buffer_queue_unittest.cc", 419 "audio_buffer_queue_unittest.cc",
412 "audio_buffer_unittest.cc", 420 "audio_buffer_unittest.cc",
413 "audio_bus_unittest.cc", 421 "audio_bus_unittest.cc",
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 606
599 fuzzer_test("media_container_names_fuzzer") { 607 fuzzer_test("media_container_names_fuzzer") {
600 sources = [ 608 sources = [
601 "container_names_fuzzertest.cc", 609 "container_names_fuzzertest.cc",
602 ] 610 ]
603 deps = [ 611 deps = [
604 "//base", 612 "//base",
605 "//media", 613 "//media",
606 ] 614 ]
607 } 615 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698