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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 5550006: Implement WebKitClientImpl::loadAudioResource() to decode in-memory audio fil... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../..', 9 'webkit_src_dir': '../../../..',
10 },{ 10 },{
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 'actions': [ 162 'actions': [
163 ], 163 ],
164 'include_dirs': [ 164 'include_dirs': [
165 '<(INTERMEDIATE_DIR)', 165 '<(INTERMEDIATE_DIR)',
166 '<(SHARED_INTERMEDIATE_DIR)/webkit', 166 '<(SHARED_INTERMEDIATE_DIR)/webkit',
167 ], 167 ],
168 'sources': [ 168 'sources': [
169 # This list contains all .h, .cc, and .mm files in glue except for 169 # This list contains all .h, .cc, and .mm files in glue except for
170 # those in the test subdirectory and those with unittest in in their 170 # those in the test subdirectory and those with unittest in in their
171 # names. 171 # names.
172 'media/audio_decoder.cc',
173 'media/audio_decoder.h',
172 'media/buffered_data_source.cc', 174 'media/buffered_data_source.cc',
173 'media/buffered_data_source.h', 175 'media/buffered_data_source.h',
174 'media/media_resource_loader_bridge_factory.cc', 176 'media/media_resource_loader_bridge_factory.cc',
175 'media/media_resource_loader_bridge_factory.h', 177 'media/media_resource_loader_bridge_factory.h',
176 'media/simple_data_source.cc', 178 'media/simple_data_source.cc',
177 'media/simple_data_source.h', 179 'media/simple_data_source.h',
178 'media/video_renderer_impl.cc', 180 'media/video_renderer_impl.cc',
179 'media/video_renderer_impl.h', 181 'media/video_renderer_impl.h',
180 'media/web_data_source.cc', 182 'media/web_data_source.cc',
181 'media/web_data_source.h', 183 'media/web_data_source.h',
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 }], 486 }],
485 ['inside_chromium_build==0', { 487 ['inside_chromium_build==0', {
486 'dependencies': [ 488 'dependencies': [
487 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 489 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
488 ], 490 ],
489 }], 491 }],
490 ], 492 ],
491 }, 493 },
492 ], 494 ],
493 } 495 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698