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

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

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 source_set("pipeline") { 5 source_set("pipeline") {
6 sources = [ 6 sources = [
7 "audio_pipeline.cc", 7 "audio_pipeline.cc",
8 "audio_pipeline.h", 8 "audio_pipeline.h",
9 "audio_pipeline_impl.cc", 9 "audio_pipeline_impl.cc",
10 "audio_pipeline_impl.h", 10 "audio_pipeline_impl.h",
11 "av_pipeline_client.cc", 11 "av_pipeline_client.cc",
12 "av_pipeline_client.h", 12 "av_pipeline_client.h",
13 "av_pipeline_impl.cc", 13 "av_pipeline_impl.cc",
14 "av_pipeline_impl.h", 14 "av_pipeline_impl.h",
15 "decrypt_util.cc", 15 "decrypt_util.cc",
16 "decrypt_util.h", 16 "decrypt_util.h",
17 "frame_status_cb_impl.cc",
18 "frame_status_cb_impl.h",
17 "load_type.h", 19 "load_type.h",
20 "media_component_device_client_impl.cc",
21 "media_component_device_client_impl.h",
18 "media_pipeline.h", 22 "media_pipeline.h",
19 "media_pipeline_client.cc", 23 "media_pipeline_client.cc",
20 "media_pipeline_client.h", 24 "media_pipeline_client.h",
21 "media_pipeline_impl.cc", 25 "media_pipeline_impl.cc",
22 "media_pipeline_impl.h", 26 "media_pipeline_impl.h",
23 "video_pipeline.cc", 27 "video_pipeline.cc",
24 "video_pipeline.h", 28 "video_pipeline.h",
25 "video_pipeline_client.cc", 29 "video_pipeline_client.cc",
26 "video_pipeline_client.h", 30 "video_pipeline_client.h",
31 "video_pipeline_device_client_impl.cc",
32 "video_pipeline_device_client_impl.h",
27 "video_pipeline_impl.cc", 33 "video_pipeline_impl.cc",
28 "video_pipeline_impl.h", 34 "video_pipeline_impl.h",
29 ] 35 ]
30 36
31 deps = [ 37 deps = [
32 "//base", 38 "//base",
33 "//chromecast/media/cma/backend", 39 "//chromecast/media/cma/backend",
34 "//chromecast/media/cma/base", 40 "//chromecast/media/cma/base",
35 "//chromecast/media/base", 41 "//chromecast/media/base",
36 "//chromecast/media/cdm", 42 "//chromecast/media/cdm",
37 "//crypto", 43 "//crypto",
38 "//crypto:platform", 44 "//crypto:platform",
39 "//media", 45 "//media",
40 "//third_party/boringssl", 46 "//third_party/boringssl",
41 ] 47 ]
42 48
43 configs += [ "//chromecast:config" ] 49 configs += [ "//chromecast:config" ]
44 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698