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 'child/fileapi/webfilesystem_callback_adapters.cc', |
| 20 'child/fileapi/webfilesystem_callback_adapters.h', |
| 21 'child/fileapi/webfilesystem_impl.cc', |
| 22 'child/fileapi/webfilesystem_impl.h', |
| 23 'child/fileapi/webfilewriter_impl.cc', |
| 24 'child/fileapi/webfilewriter_impl.h', |
| 25 'child/indexed_db/indexed_db_dispatcher.cc', |
| 26 'child/indexed_db/indexed_db_dispatcher.h', |
| 27 'child/indexed_db/indexed_db_message_filter.cc', |
| 28 'child/indexed_db/indexed_db_message_filter.h', |
| 29 'child/indexed_db/proxy_webidbcursor_impl.cc', |
| 30 'child/indexed_db/proxy_webidbcursor_impl.h', |
| 31 'child/indexed_db/proxy_webidbdatabase_impl.cc', |
| 32 'child/indexed_db/proxy_webidbdatabase_impl.h', |
| 33 'child/indexed_db/proxy_webidbfactory_impl.cc', |
| 34 'child/indexed_db/proxy_webidbfactory_impl.h', |
| 35 'child/np_channel_base.cc', |
| 36 'child/np_channel_base.h', |
| 37 'child/npobject_base.h', |
| 38 'child/npobject_proxy.cc', |
| 39 'child/npobject_proxy.h', |
| 40 'child/npobject_stub.cc', |
| 41 'child/npobject_stub.h', |
| 42 'child/npobject_util.cc', |
| 43 'child/npobject_util.h', |
| 44 'child/plugin_message_generator.cc', |
| 45 'child/plugin_message_generator.h', |
| 46 'child/plugin_messages.h', |
| 47 'child/plugin_param_traits.cc', |
| 48 'child/plugin_param_traits.h', |
| 49 'child/web_database_observer_impl.cc', |
| 50 'child/web_database_observer_impl.h', |
| 51 'child/webblobregistry_impl.cc', |
| 52 '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 |