OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'plugins', | 8 'target_name': 'plugins', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'defines': [ | 10 'defines': [ |
(...skipping 17 matching lines...) Expand all Loading... |
28 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', | 28 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', |
29 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', | 29 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', |
30 '<(DEPTH)/printing/printing.gyp:printing', | 30 '<(DEPTH)/printing/printing.gyp:printing', |
31 '<(DEPTH)/skia/skia.gyp:skia', | 31 '<(DEPTH)/skia/skia.gyp:skia', |
32 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 32 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
33 '<(DEPTH)/ui/gl/gl.gyp:gl', | 33 '<(DEPTH)/ui/gl/gl.gyp:gl', |
34 '<(DEPTH)/ui/ui.gyp:ui', | 34 '<(DEPTH)/ui/ui.gyp:ui', |
35 '<(DEPTH)/ui/ui.gyp:ui_resources', | 35 '<(DEPTH)/ui/ui.gyp:ui_resources', |
36 '<(DEPTH)/url/url.gyp:url_lib', | 36 '<(DEPTH)/url/url.gyp:url_lib', |
37 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 37 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
| 38 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', |
38 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 39 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
39 '<(DEPTH)/webkit/plugins/webkit_plugins.gyp:plugins_common', | 40 '<(DEPTH)/webkit/plugins/webkit_plugins.gyp:plugins_common', |
40 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', | 41 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', |
| 42 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
41 'glue_common', | 43 'glue_common', |
42 'webkit_base', | |
43 'webkit_common', | 44 'webkit_common', |
44 'webkit_storage', | |
45 ], | 45 ], |
46 'sources': [ | 46 'sources': [ |
47 # This list contains all .h, .cc, and .mm files in glue except for | 47 # This list contains all .h, .cc, and .mm files in glue except for |
48 # those in the test subdirectory and those with unittest in in their | 48 # those in the test subdirectory and those with unittest in in their |
49 # names. | 49 # names. |
50 '../plugins/npapi/gtk_plugin_container.cc', | 50 '../plugins/npapi/gtk_plugin_container.cc', |
51 '../plugins/npapi/gtk_plugin_container.h', | 51 '../plugins/npapi/gtk_plugin_container.h', |
52 '../plugins/npapi/gtk_plugin_container_manager.cc', | 52 '../plugins/npapi/gtk_plugin_container_manager.cc', |
53 '../plugins/npapi/gtk_plugin_container_manager.h', | 53 '../plugins/npapi/gtk_plugin_container_manager.h', |
54 '../plugins/npapi/plugin_host.cc', | 54 '../plugins/npapi/plugin_host.cc', |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'msvs_disabled_warnings': [ 4800, 4267 ], | 214 'msvs_disabled_warnings': [ 4800, 4267 ], |
215 'sources/': [['exclude', '_posix\\.cc$']], | 215 'sources/': [['exclude', '_posix\\.cc$']], |
216 'include_dirs': [ | 216 'include_dirs': [ |
217 '<(DEPTH)/third_party/wtl/include', | 217 '<(DEPTH)/third_party/wtl/include', |
218 ], | 218 ], |
219 }], | 219 }], |
220 ], | 220 ], |
221 }, | 221 }, |
222 ] | 222 ] |
223 } | 223 } |
OLD | NEW |