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', |
(...skipping 24 matching lines...) Expand all Loading... |
35 'common_child/npobject_stub.h', | 35 'common_child/npobject_stub.h', |
36 'common_child/npobject_util.cc', | 36 'common_child/npobject_util.cc', |
37 'common_child/npobject_util.h', | 37 'common_child/npobject_util.h', |
38 'common_child/plugin_message_generator.cc', | 38 'common_child/plugin_message_generator.cc', |
39 'common_child/plugin_message_generator.h', | 39 'common_child/plugin_message_generator.h', |
40 'common_child/plugin_messages.h', | 40 'common_child/plugin_messages.h', |
41 'common_child/plugin_param_traits.cc', | 41 'common_child/plugin_param_traits.cc', |
42 'common_child/plugin_param_traits.h', | 42 'common_child/plugin_param_traits.h', |
43 'common_child/web_database_observer_impl.cc', | 43 'common_child/web_database_observer_impl.cc', |
44 'common_child/web_database_observer_impl.h', | 44 'common_child/web_database_observer_impl.h', |
| 45 'common_child/webblobregistry_impl.cc', |
| 46 'common_child/webblobregistry_impl.h', |
45 ], | 47 ], |
46 'conditions': [ | 48 'conditions': [ |
47 ['OS=="ios"', { | 49 ['OS=="ios"', { |
48 'sources/': [ | 50 'sources/': [ |
49 # iOS only needs a small portion of content; exclude all the | 51 # iOS only needs a small portion of content; exclude all the |
50 # implementation, and re-include what is used. | 52 # implementation, and re-include what is used. |
51 ['exclude', '\\.(cc|mm)$'], | 53 ['exclude', '\\.(cc|mm)$'], |
52 ], | 54 ], |
53 }, { # OS!="ios" | 55 }, { # OS!="ios" |
54 'dependencies': [ | 56 'dependencies': [ |
55 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 57 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
56 '../third_party/npapi/npapi.gyp:npapi', | 58 '../third_party/npapi/npapi.gyp:npapi', |
57 '../webkit/support/webkit_support.gyp:glue', | 59 '../webkit/support/webkit_support.gyp:glue', |
58 '../webkit/support/webkit_support.gyp:webkit_base', | 60 '../webkit/support/webkit_support.gyp:webkit_base', |
59 ], | 61 ], |
60 }], | 62 }], |
61 ], | 63 ], |
62 } | 64 } |
OLD | NEW |