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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unit test + android fixes 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 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 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'cast_is_debug_build%': 0, 10 'cast_is_debug_build%': 0,
(...skipping 25 matching lines...) Expand all
36 'target_name': 'cast_public_api', 36 'target_name': 'cast_public_api',
37 'type': '<(component)', 37 'type': '<(component)',
38 'sources': [ 38 'sources': [
39 'public/cast_egl_platform.h', 39 'public/cast_egl_platform.h',
40 'public/cast_egl_platform_shlib.h', 40 'public/cast_egl_platform_shlib.h',
41 'public/cast_media_shlib.h', 41 'public/cast_media_shlib.h',
42 'public/cast_sys_info.h', 42 'public/cast_sys_info.h',
43 'public/chromecast_export.h', 43 'public/chromecast_export.h',
44 'public/graphics_properties_shlib.h', 44 'public/graphics_properties_shlib.h',
45 'public/graphics_types.h', 45 'public/graphics_types.h',
46 'public/media_codec_support.h',
47 'public/media/audio_pipeline_device.h',
48 'public/media/cast_key_system.h',
49 'public/media/decoder_buffer.h',
46 'public/media/decoder_config.h', 50 'public/media/decoder_config.h',
51 'public/media/decrypt_config.h',
52 'public/media/media_clock_device.h',
53 'public/media/media_component_device.h',
54 'public/media/media_pipeline_backend.h',
55 'public/media/media_pipeline_device_params.h',
47 'public/media/stream_id.h', 56 'public/media/stream_id.h',
57 'public/media/video_pipeline_device.h',
48 'public/osd_plane.h', 58 'public/osd_plane.h',
49 'public/osd_plane_shlib.h', 59 'public/osd_plane_shlib.h',
50 'public/osd_surface.h', 60 'public/osd_surface.h',
61 'public/task_runner.h',
62 'public/time_delta.h',
51 'public/video_plane.h', 63 'public/video_plane.h',
52 ], 64 ],
53 }, 65 },
54 { 66 {
55 'target_name': 'cast_base', 67 'target_name': 'cast_base',
56 'type': '<(component)', 68 'type': '<(component)',
57 'dependencies': [ 69 'dependencies': [
58 '../base/base.gyp:base', 70 '../base/base.gyp:base',
59 ], 71 ],
60 'sources': [ 72 'sources': [
61 'base/cast_paths.cc', 73 'base/cast_paths.cc',
62 'base/cast_paths.h', 74 'base/cast_paths.h',
63 'base/chromecast_config_android.cc', 75 'base/chromecast_config_android.cc',
64 'base/chromecast_config_android.h', 76 'base/chromecast_config_android.h',
65 'base/chromecast_switches.cc', 77 'base/chromecast_switches.cc',
66 'base/chromecast_switches.h', 78 'base/chromecast_switches.h',
67 'base/error_codes.cc', 79 'base/error_codes.cc',
68 'base/error_codes.h', 80 'base/error_codes.h',
69 'base/metrics/cast_histograms.h', 81 'base/metrics/cast_histograms.h',
70 'base/metrics/cast_metrics_helper.cc', 82 'base/metrics/cast_metrics_helper.cc',
71 'base/metrics/cast_metrics_helper.h', 83 'base/metrics/cast_metrics_helper.h',
72 'base/metrics/grouped_histogram.cc', 84 'base/metrics/grouped_histogram.cc',
73 'base/metrics/grouped_histogram.h', 85 'base/metrics/grouped_histogram.h',
74 'base/path_utils.cc', 86 'base/path_utils.cc',
75 'base/path_utils.h', 87 'base/path_utils.h',
76 'base/process_utils.cc', 88 'base/process_utils.cc',
77 'base/process_utils.h', 89 'base/process_utils.h',
78 'base/serializers.cc', 90 'base/serializers.cc',
79 'base/serializers.h' 91 'base/serializers.h',
92 'base/task_runner_impl.cc',
93 'base/task_runner_impl.h',
94 'base/time_conversions.cc',
95 'base/time_conversions.h',
80 ], 96 ],
81 'conditions': [ 97 'conditions': [
82 ['OS=="android"', { 98 ['OS=="android"', {
83 'dependencies': [ 99 'dependencies': [
84 'cast_jni_headers', 100 'cast_jni_headers',
85 ], 101 ],
86 }], 102 }],
87 ], 103 ],
88 }, # end of target 'cast_base' 104 }, # end of target 'cast_base'
89 { 105 {
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'sources': [ 726 'sources': [
711 'graphics/cast_egl_platform_default.cc', 727 'graphics/cast_egl_platform_default.cc',
712 'graphics/graphics_properties_default.cc', 728 'graphics/graphics_properties_default.cc',
713 'graphics/osd_plane_default.cc' 729 'graphics/osd_plane_default.cc'
714 ], 730 ],
715 } 731 }
716 ] 732 ]
717 }], 733 }],
718 ], # end of conditions 734 ], # end of conditions
719 } 735 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698