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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1025453002: Implement common Ozone interface for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address lcwu comments Created 5 years, 9 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
« no previous file with comments | « no previous file | chromecast/ozone/cast_egl_platform.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'target_name': 'cast_net', 81 'target_name': 'cast_net',
82 'type': '<(component)', 82 'type': '<(component)',
83 'sources': [ 83 'sources': [
84 'net/connectivity_checker.cc', 84 'net/connectivity_checker.cc',
85 'net/connectivity_checker.h', 85 'net/connectivity_checker.h',
86 'net/net_switches.cc', 86 'net/net_switches.cc',
87 'net/net_switches.h', 87 'net/net_switches.h',
88 ], 88 ],
89 }, 89 },
90 { 90 {
91 'target_name': 'cast_ozone',
92 'type': '<(component)',
93 'sources': [
94 'ozone/gpu_platform_support_cast.cc',
95 'ozone/gpu_platform_support_cast.h',
96 'ozone/ozone_platform_cast.cc',
97 'ozone/ozone_platform_cast.h',
98 'ozone/platform_window_cast.cc',
99 'ozone/platform_window_cast.h',
100 'ozone/surface_factory_cast.cc',
101 'ozone/surface_factory_cast.h',
102 'ozone/surface_ozone_egl_cast.cc',
103 'ozone/surface_ozone_egl_cast.h',
104 ],
105 },
106 {
91 'target_name': 'cast_shell_resources', 107 'target_name': 'cast_shell_resources',
92 'type': 'none', 108 'type': 'none',
93 'variables': { 109 'variables': {
94 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast', 110 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast',
95 }, 111 },
96 'actions': [ 112 'actions': [
97 { 113 {
98 'action_name': 'cast_shell_resources', 114 'action_name': 'cast_shell_resources',
99 'variables': { 115 'variables': {
100 'grit_grd_file': 'app/resources/shell_resources.grd', 116 'grit_grd_file': 'app/resources/shell_resources.grd',
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 'renderer/media/video_pipeline_proxy.h', 536 'renderer/media/video_pipeline_proxy.h',
521 ], 537 ],
522 }, # end of target 'cast_shell_media' 538 }, # end of target 'cast_shell_media'
523 # This target contains all of the primary code of |cast_shell|, except 539 # This target contains all of the primary code of |cast_shell|, except
524 # for |main|. This allows end-to-end tests using |cast_shell|. 540 # for |main|. This allows end-to-end tests using |cast_shell|.
525 # This also includes all targets that cannot be built on Android. 541 # This also includes all targets that cannot be built on Android.
526 { 542 {
527 'target_name': 'cast_shell_core', 543 'target_name': 'cast_shell_core',
528 'type': '<(component)', 544 'type': '<(component)',
529 'dependencies': [ 545 'dependencies': [
546 'cast_ozone',
530 'cast_shell_media', 547 'cast_shell_media',
531 'cast_shell_common', 548 'cast_shell_common',
532 'media/media.gyp:cast_media', 549 'media/media.gyp:cast_media',
533 '../ui/aura/aura.gyp:aura_test_support', 550 '../ui/aura/aura.gyp:aura_test_support',
534 ], 551 ],
535 'conditions': [ 552 'conditions': [
536 ['chromecast_branding=="Chrome"', { 553 ['chromecast_branding=="Chrome"', {
537 'dependencies': [ 554 'dependencies': [
538 '<(cast_internal_gyp):cast_gfx_internal', 555 '<(cast_internal_gyp):cast_gfx_internal',
539 ], 556 ],
(...skipping 16 matching lines...) Expand all
556 # TODO(dougsteed): remove when Chromecast moves to boringssl. 573 # TODO(dougsteed): remove when Chromecast moves to boringssl.
557 # Allow the cast shell to find the NSS module in the same directory. 574 # Allow the cast shell to find the NSS module in the same directory.
558 'ldflags': [ 575 'ldflags': [
559 '-Wl,-rpath=\$$ORIGIN' 576 '-Wl,-rpath=\$$ORIGIN'
560 ], 577 ],
561 }, 578 },
562 ], # end of targets 579 ], # end of targets
563 }], 580 }],
564 ], # end of conditions 581 ], # end of conditions
565 } 582 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/ozone/cast_egl_platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698