| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
| 9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
| 10 '../ui/ui.gyp:ui', | 10 '../ui/ui.gyp:ui', |
| 11 '../url/url.gyp:url_lib', | 11 '../url/url.gyp:url_lib', |
| 12 ], | 12 ], |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '..', | 14 '..', |
| 15 ], | 15 ], |
| 16 'export_dependent_settings': [ | 16 'export_dependent_settings': [ |
| 17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'child/android/child_jni_registrar.cc', | 20 'child/android/child_jni_registrar.cc', |
| 21 'child/android/child_jni_registrar.h', | 21 'child/android/child_jni_registrar.h', |
| 22 'child/appcache_backend_proxy.cc', | 22 'child/appcache/appcache_backend_proxy.cc', |
| 23 'child/appcache_backend_proxy.h', | 23 'child/appcache/appcache_backend_proxy.h', |
| 24 'child/appcache_dispatcher.cc', | 24 'child/appcache/appcache_dispatcher.cc', |
| 25 'child/appcache_dispatcher.h', | 25 'child/appcache/appcache_dispatcher.h', |
| 26 'child/appcache/appcache_frontend_impl.cc', |
| 27 'child/appcache/appcache_frontend_impl.h', |
| 28 'child/appcache/web_application_cache_host_impl.cc', |
| 29 'child/appcache/web_application_cache_host_impl.h', |
| 26 'child/browser_font_resource_trusted.cc', | 30 'child/browser_font_resource_trusted.cc', |
| 27 'child/browser_font_resource_trusted.h', | 31 'child/browser_font_resource_trusted.h', |
| 28 'child/child_histogram_message_filter.cc', | 32 'child/child_histogram_message_filter.cc', |
| 29 'child/child_histogram_message_filter.h', | 33 'child/child_histogram_message_filter.h', |
| 30 'child/child_process.cc', | 34 'child/child_process.cc', |
| 31 'child/child_process.h', | 35 'child/child_process.h', |
| 32 'child/child_resource_message_filter.cc', | 36 'child/child_resource_message_filter.cc', |
| 33 'child/child_resource_message_filter.h', | 37 'child/child_resource_message_filter.h', |
| 34 'child/child_thread.cc', | 38 'child/child_thread.cc', |
| 35 'child/child_thread.h', | 39 'child/child_thread.h', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'child/npapi/webplugin_delegate_impl_mac.mm', | 169 'child/npapi/webplugin_delegate_impl_mac.mm', |
| 166 ], | 170 ], |
| 167 }], | 171 }], |
| 168 ['use_aura==1 and OS=="win"', { | 172 ['use_aura==1 and OS=="win"', { |
| 169 'sources!': [ | 173 'sources!': [ |
| 170 'child/npapi/webplugin_delegate_impl_aura.cc', | 174 'child/npapi/webplugin_delegate_impl_aura.cc', |
| 171 ], | 175 ], |
| 172 }], | 176 }], |
| 173 ], | 177 ], |
| 174 } | 178 } |
| OLD | NEW |