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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1104853002: Adds public API and loads Cast OSD plane implementation from shared lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 23 matching lines...) Expand all
34 # Public API target for OEM partners to replace shlibs. 34 # Public API target for OEM partners to replace shlibs.
35 { 35 {
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_sys_info.h', 41 'public/cast_sys_info.h',
42 'public/chromecast_export.h', 42 'public/chromecast_export.h',
43 'public/graphics_properties_shlib.h' 43 'public/graphics_properties_shlib.h'
44 'public/osd_plane.h',
45 'public/osd_plane_shlib.h',
46 'public/osd_surface.h',
47 'public/rect.h',
gunsch 2015/04/27 16:40:27 a nit: this adds a lot of small files, do they nee
halliwell 2015/04/27 20:54:24 Don't need to be, do we have a convention for grou
gunsch 2015/04/27 21:13:53 It looks like *_types.h has a lot of precedent in
halliwell 2015/04/27 21:30:41 Ok, moved to graphics_types.h
48 'public/size.h'
44 ], 49 ],
45 }, 50 },
46 # TODO(gunsch): Remove this fake target once it's either added or no 51 # TODO(gunsch): Remove this fake target once it's either added or no
47 # longer referenced from internal code. 52 # longer referenced from internal code.
48 {'target_name': 'cast_media_audio', 'type': 'none'}, 53 {'target_name': 'cast_media_audio', 'type': 'none'},
49 54
50 { 55 {
51 'target_name': 'cast_base', 56 'target_name': 'cast_base',
52 'type': '<(component)', 57 'type': '<(component)',
53 'dependencies': [ 58 'dependencies': [
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 # This also includes all targets that cannot be built on Android. 576 # This also includes all targets that cannot be built on Android.
572 { 577 {
573 'target_name': 'cast_shell_core', 578 'target_name': 'cast_shell_core',
574 'type': '<(component)', 579 'type': '<(component)',
575 'dependencies': [ 580 'dependencies': [
576 'cast_shell_media', 581 'cast_shell_media',
577 'cast_shell_common', 582 'cast_shell_common',
578 'media/media.gyp:cast_media', 583 'media/media.gyp:cast_media',
579 ], 584 ],
580 'conditions': [ 585 'conditions': [
581 ['chromecast_branding=="Chrome"', { 586 ['chromecast_branding!="Chrome"', {
582 'dependencies': [
583 'internal/chromecast_internal.gyp:cast_gfx_internal',
584 ],
585 }, {
586 'dependencies': [ 587 'dependencies': [
587 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', 588 '../ui/ozone/ozone.gyp:eglplatform_shim_x11',
588 ], 589 ],
589 }], 590 }],
590 ], 591 ],
591 }, 592 },
592 { 593 {
593 'target_name': 'cast_shell', 594 'target_name': 'cast_shell',
594 'type': 'executable', 595 'type': 'executable',
595 'dependencies': [ 596 'dependencies': [
(...skipping 18 matching lines...) Expand all
614 ['enable_default_cast_graphics==1', { 615 ['enable_default_cast_graphics==1', {
615 'targets': [ 616 'targets': [
616 { 617 {
617 'target_name': 'libcast_graphics_1.0', 618 'target_name': 'libcast_graphics_1.0',
618 'type': 'shared_library', 619 'type': 'shared_library',
619 'dependencies': [ 620 'dependencies': [
620 'cast_public_api' 621 'cast_public_api'
621 ], 622 ],
622 'sources': [ 623 'sources': [
623 'graphics/cast_egl_platform_default.cc', 624 'graphics/cast_egl_platform_default.cc',
624 'graphics/graphics_properties_default.cc' 625 'graphics/graphics_properties_default.cc',
626 'graphics/osd_plane_default.cc'
625 ], 627 ],
626 } 628 }
627 ] 629 ]
628 }], 630 }],
629 ], # end of conditions 631 ], # end of conditions
630 } 632 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/graphics/osd_plane_default.cc » ('j') | chromecast/graphics/osd_plane_default.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698