| 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 '../ui/ui.gyp:ui', | 9 '../ui/ui.gyp:ui', |
| 10 '../url/url.gyp:url_lib', | 10 '../url/url.gyp:url_lib', |
| 11 ], | 11 ], |
| 12 'include_dirs': [ | 12 'include_dirs': [ |
| 13 '..', | 13 '..', |
| 14 ], | 14 ], |
| 15 'export_dependent_settings': [ | 15 'export_dependent_settings': [ |
| 16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 'child/child_histogram_message_filter.cc', |
| 20 'child/child_histogram_message_filter.h', |
| 21 'child/child_process.cc', |
| 22 'child/child_process.h', |
| 23 'child/child_resource_message_filter.cc', |
| 24 'child/child_resource_message_filter.h', |
| 25 'child/child_thread.cc', |
| 26 'child/child_thread.h', |
| 27 'child/database_util.cc', |
| 28 'child/database_util.h', |
| 29 'child/fileapi/file_system_dispatcher.cc', |
| 30 'child/fileapi/file_system_dispatcher.h', |
| 19 'child/fileapi/webfilesystem_callback_adapters.cc', | 31 'child/fileapi/webfilesystem_callback_adapters.cc', |
| 20 'child/fileapi/webfilesystem_callback_adapters.h', | 32 'child/fileapi/webfilesystem_callback_adapters.h', |
| 21 'child/fileapi/webfilesystem_impl.cc', | 33 'child/fileapi/webfilesystem_impl.cc', |
| 22 'child/fileapi/webfilesystem_impl.h', | 34 'child/fileapi/webfilesystem_impl.h', |
| 23 'child/fileapi/webfilewriter_impl.cc', | 35 'child/fileapi/webfilewriter_impl.cc', |
| 24 'child/fileapi/webfilewriter_impl.h', | 36 'child/fileapi/webfilewriter_impl.h', |
| 25 'child/indexed_db/indexed_db_dispatcher.cc', | 37 'child/indexed_db/indexed_db_dispatcher.cc', |
| 26 'child/indexed_db/indexed_db_dispatcher.h', | 38 'child/indexed_db/indexed_db_dispatcher.h', |
| 27 'child/indexed_db/indexed_db_message_filter.cc', | 39 'child/indexed_db/indexed_db_message_filter.cc', |
| 28 'child/indexed_db/indexed_db_message_filter.h', | 40 'child/indexed_db/indexed_db_message_filter.h', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 39 'child/npobject_proxy.h', | 51 'child/npobject_proxy.h', |
| 40 'child/npobject_stub.cc', | 52 'child/npobject_stub.cc', |
| 41 'child/npobject_stub.h', | 53 'child/npobject_stub.h', |
| 42 'child/npobject_util.cc', | 54 'child/npobject_util.cc', |
| 43 'child/npobject_util.h', | 55 'child/npobject_util.h', |
| 44 'child/plugin_message_generator.cc', | 56 'child/plugin_message_generator.cc', |
| 45 'child/plugin_message_generator.h', | 57 'child/plugin_message_generator.h', |
| 46 'child/plugin_messages.h', | 58 'child/plugin_messages.h', |
| 47 'child/plugin_param_traits.cc', | 59 'child/plugin_param_traits.cc', |
| 48 'child/plugin_param_traits.h', | 60 'child/plugin_param_traits.h', |
| 61 'child/quota_dispatcher.cc', |
| 62 'child/quota_dispatcher.h', |
| 63 'child/resource_dispatcher.cc', |
| 64 'child/resource_dispatcher.h', |
| 65 'child/socket_stream_dispatcher.cc', |
| 66 'child/socket_stream_dispatcher.h', |
| 67 'child/thread_safe_sender.cc', |
| 68 'child/thread_safe_sender.h', |
| 69 'child/webblobregistry_impl.cc', |
| 70 'child/webblobregistry_impl.h', |
| 49 'child/web_database_observer_impl.cc', | 71 'child/web_database_observer_impl.cc', |
| 50 'child/web_database_observer_impl.h', | 72 'child/web_database_observer_impl.h', |
| 51 'child/webblobregistry_impl.cc', | 73 'child/webkitplatformsupport_impl.cc', |
| 52 'child/webblobregistry_impl.h', | 74 'child/webkitplatformsupport_impl.h', |
| 75 'child/webmessageportchannel_impl.cc', |
| 76 'child/webmessageportchannel_impl.h', |
| 53 ], | 77 ], |
| 54 'conditions': [ | 78 'conditions': [ |
| 55 ['OS=="ios"', { | 79 ['OS=="ios"', { |
| 56 'sources/': [ | 80 'sources/': [ |
| 57 # iOS only needs a small portion of content; exclude all the | 81 # iOS only needs a small portion of content; exclude all the |
| 58 # implementation, and re-include what is used. | 82 # implementation, and re-include what is used. |
| 59 ['exclude', '\\.(cc|mm)$'], | 83 ['exclude', '\\.(cc|mm)$'], |
| 60 ], | 84 ], |
| 61 }, { # OS!="ios" | 85 }, { # OS!="ios" |
| 62 'dependencies': [ | 86 'dependencies': [ |
| 63 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 87 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 64 '../third_party/npapi/npapi.gyp:npapi', | 88 '../third_party/npapi/npapi.gyp:npapi', |
| 65 '../webkit/support/webkit_support.gyp:glue', | 89 '../webkit/support/webkit_support.gyp:glue', |
| 66 '../webkit/support/webkit_support.gyp:webkit_base', | 90 '../webkit/support/webkit_support.gyp:webkit_base', |
| 67 ], | 91 ], |
| 68 }], | 92 }], |
| 69 ], | 93 ], |
| 70 } | 94 } |
| OLD | NEW |