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