OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
9 '../components/tracing.gyp:tracing', | 9 '../components/tracing.gyp:tracing', |
10 '../ui/ui.gyp:ui', | 10 '../ui/ui.gyp:ui', |
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 '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', |
19 'common_child/indexed_db/indexed_db_dispatcher.cc', | 25 'common_child/indexed_db/indexed_db_dispatcher.cc', |
20 'common_child/indexed_db/indexed_db_dispatcher.h', | 26 'common_child/indexed_db/indexed_db_dispatcher.h', |
21 'common_child/indexed_db/indexed_db_message_filter.cc', | 27 'common_child/indexed_db/indexed_db_message_filter.cc', |
22 'common_child/indexed_db/indexed_db_message_filter.h', | 28 'common_child/indexed_db/indexed_db_message_filter.h', |
23 'common_child/indexed_db/proxy_webidbcursor_impl.cc', | 29 'common_child/indexed_db/proxy_webidbcursor_impl.cc', |
24 'common_child/indexed_db/proxy_webidbcursor_impl.h', | 30 'common_child/indexed_db/proxy_webidbcursor_impl.h', |
25 'common_child/indexed_db/proxy_webidbdatabase_impl.cc', | 31 'common_child/indexed_db/proxy_webidbdatabase_impl.cc', |
26 'common_child/indexed_db/proxy_webidbdatabase_impl.h', | 32 'common_child/indexed_db/proxy_webidbdatabase_impl.h', |
27 'common_child/indexed_db/proxy_webidbfactory_impl.cc', | 33 'common_child/indexed_db/proxy_webidbfactory_impl.cc', |
28 'common_child/indexed_db/proxy_webidbfactory_impl.h', | 34 'common_child/indexed_db/proxy_webidbfactory_impl.h', |
(...skipping 24 matching lines...) Expand all Loading... |
53 }, { # OS!="ios" | 59 }, { # OS!="ios" |
54 'dependencies': [ | 60 'dependencies': [ |
55 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 61 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
56 '../third_party/npapi/npapi.gyp:npapi', | 62 '../third_party/npapi/npapi.gyp:npapi', |
57 '../webkit/support/webkit_support.gyp:glue', | 63 '../webkit/support/webkit_support.gyp:glue', |
58 '../webkit/support/webkit_support.gyp:webkit_base', | 64 '../webkit/support/webkit_support.gyp:webkit_base', |
59 ], | 65 ], |
60 }], | 66 }], |
61 ], | 67 ], |
62 } | 68 } |
OLD | NEW |