| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'webkit_media', | 8 'target_name': 'webkit_media', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ], | 58 ], |
| 59 'conditions': [ | 59 'conditions': [ |
| 60 ['inside_chromium_build==0', { | 60 ['inside_chromium_build==0', { |
| 61 'dependencies': [ | 61 'dependencies': [ |
| 62 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 62 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 63 ], | 63 ], |
| 64 }], | 64 }], |
| 65 ['OS == "android"', { | 65 ['OS == "android"', { |
| 66 'sources!': [ | 66 'sources!': [ |
| 67 'audio_decoder.cc', | 67 'audio_decoder.cc', |
| 68 'audio_decoder.h', |
| 69 'filter_helpers.cc', |
| 70 'filter_helpers.h', |
| 68 'webmediaplayer_impl.cc', | 71 'webmediaplayer_impl.cc', |
| 69 'webmediaplayer_impl.h', | 72 'webmediaplayer_impl.h', |
| 73 'webmediaplayer_proxy.cc', |
| 74 'webmediaplayer_proxy.h', |
| 70 ], | 75 ], |
| 71 'dependencies': [ | 76 'dependencies': [ |
| 72 '<(DEPTH)/media/media.gyp:player_android', | 77 '<(DEPTH)/media/media.gyp:player_android', |
| 73 ], | 78 ], |
| 74 }, { # OS != "android"' | 79 }, { # OS != "android"' |
| 75 'sources/': [ | 80 'sources/': [ |
| 76 ['exclude', '^android/'], | 81 ['exclude', '^android/'], |
| 77 ], | 82 ], |
| 78 }], | 83 }], |
| 79 ], | 84 ], |
| 80 }, | 85 }, |
| 81 ], | 86 ], |
| 82 } | 87 } |
| OLD | NEW |