| OLD | NEW |
| 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 Loading... |
| 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/buffered_resource_loader.cc', |
| 174 'media/buffered_resource_loader.h', |
| 173 'media/media_resource_loader_bridge_factory.cc', | 175 'media/media_resource_loader_bridge_factory.cc', |
| 174 'media/media_resource_loader_bridge_factory.h', | 176 'media/media_resource_loader_bridge_factory.h', |
| 175 'media/simple_data_source.cc', | 177 'media/simple_data_source.cc', |
| 176 'media/simple_data_source.h', | 178 'media/simple_data_source.h', |
| 177 'media/video_renderer_impl.cc', | 179 'media/video_renderer_impl.cc', |
| 178 'media/video_renderer_impl.h', | 180 'media/video_renderer_impl.h', |
| 179 'media/web_data_source.cc', | 181 'media/web_data_source.cc', |
| 180 'media/web_data_source.h', | 182 'media/web_data_source.h', |
| 181 'media/web_video_renderer.h', | 183 'media/web_video_renderer.h', |
| 182 'plugins/carbon_plugin_window_tracker_mac.h', | 184 'plugins/carbon_plugin_window_tracker_mac.h', |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 }], | 485 }], |
| 484 ['inside_chromium_build==0', { | 486 ['inside_chromium_build==0', { |
| 485 'dependencies': [ | 487 'dependencies': [ |
| 486 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 488 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 487 ], | 489 ], |
| 488 }], | 490 }], |
| 489 ], | 491 ], |
| 490 }, | 492 }, |
| 491 ], | 493 ], |
| 492 } | 494 } |
| OLD | NEW |