Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: webkit/support/webkit_support.gypi

Issue 15007012: Track NPObject ownership by the originating plugins' NPP identifier. [2/3] (Chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing includes. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'webkit_support', 11 'target_name': 'webkit_support',
12 'type': 'static_library', 12 'type': 'static_library',
13 'variables': { 'enable_wexit_time_destructors': 1, }, 13 'variables': { 'enable_wexit_time_destructors': 1, },
14 'dependencies': [ 14 'dependencies': [
15 '<(DEPTH)/base/base.gyp:base', 15 '<(DEPTH)/base/base.gyp:base',
16 '<(DEPTH)/base/base.gyp:base_i18n', 16 '<(DEPTH)/base/base.gyp:base_i18n',
17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
18 '<(DEPTH)/cc/cc.gyp:cc', 18 '<(DEPTH)/cc/cc.gyp:cc',
19 '<(DEPTH)/media/media.gyp:media', 19 '<(DEPTH)/media/media.gyp:media',
20 '<(DEPTH)/net/net.gyp:net', 20 '<(DEPTH)/net/net.gyp:net',
21 '<(DEPTH)/skia/skia.gyp:skia', 21 '<(DEPTH)/skia/skia.gyp:skia',
22 '<(DEPTH)/testing/gtest.gyp:gtest', 22 '<(DEPTH)/testing/gtest.gyp:gtest',
23 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen', 23 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen',
24 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
jamesr 2013/05/15 22:32:15 why does webkit_support need to depend on npapi?
Wez 2013/05/15 23:14:16 It pulls in WebFrame.h, IIRC, which in turn will n
24 '<(DEPTH)/ui/gl/gl.gyp:gl', 25 '<(DEPTH)/ui/gl/gl.gyp:gl',
25 '<(DEPTH)/ui/ui.gyp:shell_dialogs', 26 '<(DEPTH)/ui/ui.gyp:shell_dialogs',
26 '<(DEPTH)/ui/ui.gyp:ui', 27 '<(DEPTH)/ui/ui.gyp:ui',
27 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_bindings', 28 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_bindings',
28 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support', 29 '<(DEPTH)/webkit/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support',
29 '<(DEPTH)/webkit/gpu/webkit_gpu.gyp:webkit_gpu', 30 '<(DEPTH)/webkit/gpu/webkit_gpu.gyp:webkit_gpu',
30 'glue', 31 'glue',
31 'user_agent', 32 'user_agent',
32 'webkit_base', 33 'webkit_base',
33 'webkit_media', 34 'webkit_media',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 102
102 { 103 {
103 'target_name': 'webkit_support_common', 104 'target_name': 'webkit_support_common',
104 'type': 'static_library', 105 'type': 'static_library',
105 'variables': { 'enable_wexit_time_destructors': 1, }, 106 'variables': { 'enable_wexit_time_destructors': 1, },
106 'dependencies': [ 107 'dependencies': [
107 '<(DEPTH)/base/base.gyp:base', 108 '<(DEPTH)/base/base.gyp:base',
108 '<(DEPTH)/crypto/crypto.gyp:crypto', 109 '<(DEPTH)/crypto/crypto.gyp:crypto',
109 '<(DEPTH)/net/net.gyp:net', 110 '<(DEPTH)/net/net.gyp:net',
110 '<(DEPTH)/skia/skia.gyp:skia', 111 '<(DEPTH)/skia/skia.gyp:skia',
112 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
111 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 113 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
112 '<(DEPTH)/ui/ui.gyp:ui', 114 '<(DEPTH)/ui/ui.gyp:ui',
113 'glue', 115 'glue',
114 'user_agent', 116 'user_agent',
115 'webkit_support_gfx', 117 'webkit_support_gfx',
116 ], 118 ],
117 'export_dependent_settings': [ 119 'export_dependent_settings': [
118 '<(DEPTH)/base/base.gyp:base', 120 '<(DEPTH)/base/base.gyp:base',
119 ], 121 ],
120 'sources': [ 122 'sources': [
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 '<(DEPTH)', 178 '<(DEPTH)',
177 ], 179 ],
178 'conditions': [ 180 'conditions': [
179 ['OS=="android"', { 181 ['OS=="android"', {
180 'toolsets': ['target', 'host'], 182 'toolsets': ['target', 'host'],
181 }], 183 }],
182 ], 184 ],
183 }, 185 },
184 ], 186 ],
185 } 187 }
OLDNEW
« webkit/plugins/ppapi/ppapi_webplugin_impl.cc ('K') | « webkit/plugins/ppapi/ppapi_webplugin_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698