| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'dependencies': [ | |
| 7 '../base/base.gyp:base', | |
| 8 '../components/tracing.gyp:tracing', | |
| 9 '../ui/ui.gyp:ui', | |
| 10 '../url/url.gyp:url_lib', | |
| 11 ], | |
| 12 'include_dirs': [ | |
| 13 '..', | |
| 14 ], | |
| 15 'export_dependent_settings': [ | |
| 16 '../base/base.gyp:base', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'common_child/fileapi/webfilesystem_callback_adapters.cc', | |
| 20 'common_child/fileapi/webfilesystem_callback_adapters.h', | |
| 21 'common_child/fileapi/webfilesystem_impl.cc', | |
| 22 'common_child/fileapi/webfilesystem_impl.h', | |
| 23 'common_child/fileapi/webfilewriter_impl.cc', | |
| 24 'common_child/fileapi/webfilewriter_impl.h', | |
| 25 'common_child/indexed_db/indexed_db_dispatcher.cc', | |
| 26 'common_child/indexed_db/indexed_db_dispatcher.h', | |
| 27 'common_child/indexed_db/indexed_db_message_filter.cc', | |
| 28 'common_child/indexed_db/indexed_db_message_filter.h', | |
| 29 'common_child/indexed_db/proxy_webidbcursor_impl.cc', | |
| 30 'common_child/indexed_db/proxy_webidbcursor_impl.h', | |
| 31 'common_child/indexed_db/proxy_webidbdatabase_impl.cc', | |
| 32 'common_child/indexed_db/proxy_webidbdatabase_impl.h', | |
| 33 'common_child/indexed_db/proxy_webidbfactory_impl.cc', | |
| 34 'common_child/indexed_db/proxy_webidbfactory_impl.h', | |
| 35 'common_child/np_channel_base.cc', | |
| 36 'common_child/np_channel_base.h', | |
| 37 'common_child/npobject_base.h', | |
| 38 'common_child/npobject_proxy.cc', | |
| 39 'common_child/npobject_proxy.h', | |
| 40 'common_child/npobject_stub.cc', | |
| 41 'common_child/npobject_stub.h', | |
| 42 'common_child/npobject_util.cc', | |
| 43 'common_child/npobject_util.h', | |
| 44 'common_child/plugin_message_generator.cc', | |
| 45 'common_child/plugin_message_generator.h', | |
| 46 'common_child/plugin_messages.h', | |
| 47 'common_child/plugin_param_traits.cc', | |
| 48 'common_child/plugin_param_traits.h', | |
| 49 'common_child/web_database_observer_impl.cc', | |
| 50 'common_child/web_database_observer_impl.h', | |
| 51 'common_child/webblobregistry_impl.cc', | |
| 52 'common_child/webblobregistry_impl.h', | |
| 53 ], | |
| 54 'conditions': [ | |
| 55 ['OS=="ios"', { | |
| 56 'sources/': [ | |
| 57 # iOS only needs a small portion of content; exclude all the | |
| 58 # implementation, and re-include what is used. | |
| 59 ['exclude', '\\.(cc|mm)$'], | |
| 60 ], | |
| 61 }, { # OS!="ios" | |
| 62 'dependencies': [ | |
| 63 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | |
| 64 '../third_party/npapi/npapi.gyp:npapi', | |
| 65 '../webkit/support/webkit_support.gyp:glue', | |
| 66 '../webkit/support/webkit_support.gyp:webkit_base', | |
| 67 ], | |
| 68 }], | |
| 69 ], | |
| 70 } | |
| OLD | NEW |