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

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

Issue 5756004: Separate BufferedDataSource and BufferedResourceLoader into two files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: inlining + removing Is...Protocol methods and getting rid of GetBufferedFirstBytePosition 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'include_dirs': [ 163 'include_dirs': [
164 '<(INTERMEDIATE_DIR)', 164 '<(INTERMEDIATE_DIR)',
165 '<(SHARED_INTERMEDIATE_DIR)/webkit', 165 '<(SHARED_INTERMEDIATE_DIR)/webkit',
166 ], 166 ],
167 'sources': [ 167 'sources': [
168 # This list contains all .h, .cc, and .mm files in glue except for 168 # This list contains all .h, .cc, and .mm files in glue except for
169 # those in the test subdirectory and those with unittest in in their 169 # those in the test subdirectory and those with unittest in in their
170 # names. 170 # names.
171 'media/buffered_data_source.cc', 171 'media/buffered_data_source.cc',
172 'media/buffered_data_source.h', 172 'media/buffered_data_source.h',
173 'media/media_resource_loader_bridge_factory.cc', 173 'media/buffered_resource_loader.cc',
174 'media/media_resource_loader_bridge_factory.h', 174 'media/buffered_resource_loader.h',
175 'media/simple_data_source.cc', 175 'media/simple_data_source.cc',
176 'media/simple_data_source.h', 176 'media/simple_data_source.h',
177 'media/video_renderer_impl.cc', 177 'media/video_renderer_impl.cc',
178 'media/video_renderer_impl.h', 178 'media/video_renderer_impl.h',
179 'media/web_data_source.cc', 179 'media/web_data_source.cc',
180 'media/web_data_source.h', 180 'media/web_data_source.h',
181 'media/web_video_renderer.h', 181 'media/web_video_renderer.h',
182 'plugins/carbon_plugin_window_tracker_mac.h', 182 'plugins/carbon_plugin_window_tracker_mac.h',
183 'plugins/carbon_plugin_window_tracker_mac.cc', 183 'plugins/carbon_plugin_window_tracker_mac.cc',
184 'plugins/coregraphics_private_symbols_mac.h', 184 'plugins/coregraphics_private_symbols_mac.h',
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 }], 483 }],
484 ['inside_chromium_build==0', { 484 ['inside_chromium_build==0', {
485 'dependencies': [ 485 'dependencies': [
486 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 486 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
487 ], 487 ],
488 }], 488 }],
489 ], 489 ],
490 }, 490 },
491 ], 491 ],
492 } 492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698