Chromium Code Reviews| OLD | NEW | 
|---|---|
| 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 'chromium_code': 1, | 9 'chromium_code': 1, | 
| 10 'chromecast_branding%': 'Chromium', | 10 'chromecast_branding%': 'Chromium', | 
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 401 'dependencies': [ | 401 'dependencies': [ | 
| 402 '<(cast_internal_gyp):crash_internal', | 402 '<(cast_internal_gyp):crash_internal', | 
| 403 ], | 403 ], | 
| 404 }, { | 404 }, { | 
| 405 'sources': [ | 405 'sources': [ | 
| 406 'crash/cast_crash_reporter_client_simple.cc', | 406 'crash/cast_crash_reporter_client_simple.cc', | 
| 407 ], | 407 ], | 
| 408 }], | 408 }], | 
| 409 ] | 409 ] | 
| 410 }, # end of target 'cast_crash_client' | 410 }, # end of target 'cast_crash_client' | 
| 411 { | |
| 412 'target_name': 'cast_shell_cma', | |
| 413 'type': '<(component)', | |
| 414 'dependencies': [ | |
| 415 'media/media.gyp:cast_media', | |
| 416 '../content/content.gyp:content', | |
| 417 '../ipc/ipc.gyp:ipc', | |
| 418 ], | |
| 419 'sources': [ | |
| 420 'common/media/cma_messages.h', | |
| 421 'common/media/cma_message_generator.cc', | |
| 422 'common/media/cma_message_generator.h', | |
| 423 'common/media/cma_param_traits.cc', | |
| 424 'common/media/cma_param_traits.h', | |
| 425 ], | |
| 426 }, | |
| 411 # This target contains all of the primary code of |cast_shell|, except | 427 # This target contains all of the primary code of |cast_shell|, except | 
| 412 # for |main|. This allows end-to-end tests using |cast_shell|. | 428 # for |main|. This allows end-to-end tests using |cast_shell|. | 
| 413 # This also includes all targets that cannot be built on Android. | 429 # This also includes all targets that cannot be built on Android. | 
| 414 { | 430 { | 
| 415 'target_name': 'cast_shell_core', | 431 'target_name': 'cast_shell_core', | 
| 416 'type': '<(component)', | 432 'type': '<(component)', | 
| 417 'dependencies': [ | 433 'dependencies': [ | 
| 418 'cast_crash_client', | 434 'cast_crash_client', | 
| 419 'cast_net', | 435 'cast_net', | 
| 436 'cast_shell_cma', | |
| 
 
damienv1
2014/12/12 02:30:16
Would rather name it: cast_media_ipc (just like we
 
gunsch
2014/12/12 22:40:53
Renamed to cast_shell_media --- the intent for thi
 
 | |
| 420 'cast_shell_common', | 437 'cast_shell_common', | 
| 421 'media/media.gyp:cast_media', | 438 'media/media.gyp:cast_media', | 
| 422 '../ui/aura/aura.gyp:aura_test_support', | 439 '../ui/aura/aura.gyp:aura_test_support', | 
| 423 ], | 440 ], | 
| 424 'conditions': [ | 441 'conditions': [ | 
| 425 ['chromecast_branding=="Chrome"', { | 442 ['chromecast_branding=="Chrome"', { | 
| 426 'dependencies': [ | 443 'dependencies': [ | 
| 427 '<(cast_internal_gyp):cast_gfx_internal', | 444 '<(cast_internal_gyp):cast_gfx_internal', | 
| 428 ], | 445 ], | 
| 429 }, { | 446 }, { | 
| (...skipping 10 matching lines...) Expand all Loading... | |
| 440 'cast_shell_core', | 457 'cast_shell_core', | 
| 441 ], | 458 ], | 
| 442 'sources': [ | 459 'sources': [ | 
| 443 'app/cast_main.cc', | 460 'app/cast_main.cc', | 
| 444 ], | 461 ], | 
| 445 }, | 462 }, | 
| 446 ], # end of targets | 463 ], # end of targets | 
| 447 }], | 464 }], | 
| 448 ], # end of conditions | 465 ], # end of conditions | 
| 449 } | 466 } | 
| OLD | NEW |