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

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

Issue 1372393007: [Chromecast] Upgrade to new CMA backend API (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix GN build Created 5 years, 2 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("media") { 8 group("media") {
9 deps = [ 9 deps = [
10 "//chromecast/media/audio", 10 "//chromecast/media/audio",
(...skipping 15 matching lines...) Expand all
26 "cma/ipc/media_message_fifo_unittest.cc", 26 "cma/ipc/media_message_fifo_unittest.cc",
27 "cma/ipc/media_message_unittest.cc", 27 "cma/ipc/media_message_unittest.cc",
28 "cma/ipc_streamer/av_streamer_unittest.cc", 28 "cma/ipc_streamer/av_streamer_unittest.cc",
29 "cma/pipeline/audio_video_pipeline_impl_unittest.cc", 29 "cma/pipeline/audio_video_pipeline_impl_unittest.cc",
30 "cma/test/demuxer_stream_for_test.cc", 30 "cma/test/demuxer_stream_for_test.cc",
31 "cma/test/demuxer_stream_for_test.h", 31 "cma/test/demuxer_stream_for_test.h",
32 "cma/test/frame_generator_for_test.cc", 32 "cma/test/frame_generator_for_test.cc",
33 "cma/test/frame_generator_for_test.h", 33 "cma/test/frame_generator_for_test.h",
34 "cma/test/frame_segmenter_for_test.cc", 34 "cma/test/frame_segmenter_for_test.cc",
35 "cma/test/frame_segmenter_for_test.h", 35 "cma/test/frame_segmenter_for_test.h",
36 "cma/test/media_component_device_feeder_for_test.cc",
37 "cma/test/media_component_device_feeder_for_test.h",
38 "cma/test/mock_frame_consumer.cc", 36 "cma/test/mock_frame_consumer.cc",
39 "cma/test/mock_frame_consumer.h", 37 "cma/test/mock_frame_consumer.h",
40 "cma/test/mock_frame_provider.cc", 38 "cma/test/mock_frame_provider.cc",
41 "cma/test/mock_frame_provider.h", 39 "cma/test/mock_frame_provider.h",
42 "cma/test/run_all_unittests.cc", 40 "cma/test/run_all_unittests.cc",
43 ] 41 ]
44 42
45 configs += [ "//chromecast:config" ] 43 configs += [ "//chromecast:config" ]
46 44
47 deps = [ 45 deps = [
48 ":media", 46 ":media",
49 "//chromecast/media/audio:test_support", 47 "//chromecast/media/audio:test_support",
48 "//chromecast/media/base:message_loop",
49 "//chromecast/media/cma/backend",
50 "//chromecast/media/cma/base",
51 "//chromecast/media/cma/filters",
52 "//chromecast/media/cma/ipc",
53 "//chromecast/media/cma/ipc_streamer",
54 "//chromecast/media/cma/pipeline",
50 "//base", 55 "//base",
51 "//base:i18n", 56 "//base:i18n",
52 "//base/test:test_support", 57 "//base/test:test_support",
53 "//chromecast/base", 58 "//chromecast/base",
54 "//chromecast/base/metrics:test_support", 59 "//chromecast/base/metrics:test_support",
55 "//chromecast/public", 60 "//chromecast/public",
61 "//chromecast/renderer/media",
56 "//media", 62 "//media",
57 "//media/base:test_support", 63 "//media/base:test_support",
58 "//testing/gmock", 64 "//testing/gmock",
59 "//testing/gtest", 65 "//testing/gtest",
60 "//ui/gfx/geometry", 66 "//ui/gfx/geometry",
61 ] 67 ]
62 } 68 }
63 69
64 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete. 70 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete.
65 # See: b/21639416 71 # See: b/21639416
66 shared_library("libffmpegsumo") { 72 shared_library("libffmpegsumo") {
67 output_name = "libffmpegsumo" 73 output_name = "libffmpegsumo"
68 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698