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