OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
10 '../ui/gfx/gfx.gyp:gfx', | 10 '../ui/gfx/gfx.gyp:gfx', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 'child/indexed_db/indexed_db_key_builders.cc', | 57 'child/indexed_db/indexed_db_key_builders.cc', |
58 'child/indexed_db/indexed_db_key_builders.h', | 58 'child/indexed_db/indexed_db_key_builders.h', |
59 'child/indexed_db/indexed_db_message_filter.cc', | 59 'child/indexed_db/indexed_db_message_filter.cc', |
60 'child/indexed_db/indexed_db_message_filter.h', | 60 'child/indexed_db/indexed_db_message_filter.h', |
61 'child/indexed_db/proxy_webidbcursor_impl.cc', | 61 'child/indexed_db/proxy_webidbcursor_impl.cc', |
62 'child/indexed_db/proxy_webidbcursor_impl.h', | 62 'child/indexed_db/proxy_webidbcursor_impl.h', |
63 'child/indexed_db/proxy_webidbdatabase_impl.cc', | 63 'child/indexed_db/proxy_webidbdatabase_impl.cc', |
64 'child/indexed_db/proxy_webidbdatabase_impl.h', | 64 'child/indexed_db/proxy_webidbdatabase_impl.h', |
65 'child/indexed_db/proxy_webidbfactory_impl.cc', | 65 'child/indexed_db/proxy_webidbfactory_impl.cc', |
66 'child/indexed_db/proxy_webidbfactory_impl.h', | 66 'child/indexed_db/proxy_webidbfactory_impl.h', |
67 'child/service_worker/service_worker_dispatcher.cc', | |
68 'child/service_worker/service_worker_dispatcher.h', | |
69 'child/service_worker/service_worker_message_filter.cc', | |
70 'child/service_worker/service_worker_message_filter.h', | |
71 'child/service_worker/web_service_worker_proxy.cc', | |
72 'child/service_worker/web_service_worker_proxy.h', | |
73 'child/service_worker/web_service_worker_registry_proxy.cc', | |
74 'child/service_worker/web_service_worker_registry_proxy.h', | |
kinuko
2013/10/04 14:55:48
I think these *_proxy.{cc,h} files should be named
michaeln
2013/10/04 20:36:45
+1, filename and classname should match one anothe
| |
67 'child/npapi/np_channel_base.cc', | 75 'child/npapi/np_channel_base.cc', |
68 'child/npapi/np_channel_base.h', | 76 'child/npapi/np_channel_base.h', |
69 'child/npapi/npobject_base.h', | 77 'child/npapi/npobject_base.h', |
70 'child/npapi/npobject_proxy.cc', | 78 'child/npapi/npobject_proxy.cc', |
71 'child/npapi/npobject_proxy.h', | 79 'child/npapi/npobject_proxy.h', |
72 'child/npapi/npobject_stub.cc', | 80 'child/npapi/npobject_stub.cc', |
73 'child/npapi/npobject_stub.h', | 81 'child/npapi/npobject_stub.h', |
74 'child/npapi/npobject_util.cc', | 82 'child/npapi/npobject_util.cc', |
75 'child/npapi/npobject_util.h', | 83 'child/npapi/npobject_util.h', |
76 'child/npapi/npruntime_util.cc', | 84 'child/npapi/npruntime_util.cc', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
179 'child/npapi/webplugin_delegate_impl_mac.mm', | 187 'child/npapi/webplugin_delegate_impl_mac.mm', |
180 ], | 188 ], |
181 }], | 189 }], |
182 ['use_aura==1 and OS=="win"', { | 190 ['use_aura==1 and OS=="win"', { |
183 'sources!': [ | 191 'sources!': [ |
184 'child/npapi/webplugin_delegate_impl_aura.cc', | 192 'child/npapi/webplugin_delegate_impl_aura.cc', |
185 ], | 193 ], |
186 }], | 194 }], |
187 ], | 195 ], |
188 } | 196 } |
OLD | NEW |