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

Side by Side Diff: ppapi/ppapi_internal.gyp

Issue 252663002: Track plugin input event latency (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix win & mac build Created 6 years, 6 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
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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 '../base/base.gyp:base', 45 '../base/base.gyp:base',
46 '../base/base.gyp:base_i18n', 46 '../base/base.gyp:base_i18n',
47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
48 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 48 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
49 '../gpu/gpu.gyp:command_buffer_client', 49 '../gpu/gpu.gyp:command_buffer_client',
50 '../gpu/gpu.gyp:gles2_implementation', 50 '../gpu/gpu.gyp:gles2_implementation',
51 '../ipc/ipc.gyp:ipc', 51 '../ipc/ipc.gyp:ipc',
52 '../media/media.gyp:shared_memory_support', 52 '../media/media.gyp:shared_memory_support',
53 '../skia/skia.gyp:skia', 53 '../skia/skia.gyp:skia',
54 '../third_party/icu/icu.gyp:icuuc', 54 '../third_party/icu/icu.gyp:icuuc',
55 '../ui/events/events.gyp:events_base',
55 '../ui/surface/surface.gyp:surface', 56 '../ui/surface/surface.gyp:surface',
56 '../url/url.gyp:url_lib', 57 '../url/url.gyp:url_lib',
57 'ppapi.gyp:ppapi_c', 58 'ppapi.gyp:ppapi_c',
58 ], 59 ],
59 'export_dependent_settings': [ 60 'export_dependent_settings': [
60 '../base/base.gyp:base', 61 '../base/base.gyp:base',
61 ], 62 ],
62 'conditions': [ 63 'conditions': [
63 ['OS=="mac"', { 64 ['OS=="mac"', {
64 'link_settings': { 65 'link_settings': {
(...skipping 30 matching lines...) Expand all
95 'target_name': 'ppapi_ipc', 96 'target_name': 'ppapi_ipc',
96 'type': 'static_library', 97 'type': 'static_library',
97 'variables': { 98 'variables': {
98 'ppapi_ipc_target': 1, 99 'ppapi_ipc_target': 1,
99 }, 100 },
100 'dependencies': [ 101 'dependencies': [
101 '../base/base.gyp:base', 102 '../base/base.gyp:base',
102 '../gpu/gpu.gyp:gpu_ipc', 103 '../gpu/gpu.gyp:gpu_ipc',
103 '../ipc/ipc.gyp:ipc', 104 '../ipc/ipc.gyp:ipc',
104 '../skia/skia.gyp:skia', 105 '../skia/skia.gyp:skia',
106 '../ui/events/ipc/events_ipc.gyp:events_ipc',
105 'ppapi.gyp:ppapi_c', 107 'ppapi.gyp:ppapi_c',
106 'ppapi_shared', 108 'ppapi_shared',
107 ], 109 ],
108 'all_dependent_settings': { 110 'all_dependent_settings': {
109 'include_dirs': [ 111 'include_dirs': [
110 '..', 112 '..',
111 ], 113 ],
112 }, 114 },
113 }, 115 },
114 { 116 {
115 'target_name': 'ppapi_proxy', 117 'target_name': 'ppapi_proxy',
116 'type': 'static_library', 118 'type': 'static_library',
117 'variables': { 119 'variables': {
118 'ppapi_proxy_target': 1, 120 'ppapi_proxy_target': 1,
119 }, 121 },
120 'dependencies': [ 122 'dependencies': [
121 '../base/base.gyp:base', 123 '../base/base.gyp:base',
122 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 124 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
123 '../gpu/gpu.gyp:gles2_implementation', 125 '../gpu/gpu.gyp:gles2_implementation',
124 '../gpu/gpu.gyp:gpu_ipc', 126 '../gpu/gpu.gyp:gpu_ipc',
125 '../media/media.gyp:shared_memory_support', 127 '../media/media.gyp:shared_memory_support',
126 '../ipc/ipc.gyp:ipc', 128 '../ipc/ipc.gyp:ipc',
127 '../skia/skia.gyp:skia', 129 '../skia/skia.gyp:skia',
128 '../third_party/icu/icu.gyp:icuuc', 130 '../third_party/icu/icu.gyp:icuuc',
129 '../third_party/icu/icu.gyp:icui18n', 131 '../third_party/icu/icu.gyp:icui18n',
132 '../ui/events/events.gyp:events_base',
130 '../ui/surface/surface.gyp:surface', 133 '../ui/surface/surface.gyp:surface',
131 'ppapi.gyp:ppapi_c', 134 'ppapi.gyp:ppapi_c',
132 'ppapi_shared', 135 'ppapi_shared',
133 'ppapi_ipc', 136 'ppapi_ipc',
134 ], 137 ],
135 'all_dependent_settings': { 138 'all_dependent_settings': {
136 'include_dirs': [ 139 'include_dirs': [
137 '..', 140 '..',
138 ], 141 ],
139 }, 142 },
(...skipping 28 matching lines...) Expand all
168 'dependencies': [ 171 'dependencies': [
169 '../base/base.gyp:base', 172 '../base/base.gyp:base',
170 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 173 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
171 '../gpu/gpu.gyp:gles2_implementation', 174 '../gpu/gpu.gyp:gles2_implementation',
172 '../gpu/gpu.gyp:gpu_ipc', 175 '../gpu/gpu.gyp:gpu_ipc',
173 '../media/media.gyp:shared_memory_support', 176 '../media/media.gyp:shared_memory_support',
174 '../ipc/ipc.gyp:ipc', 177 '../ipc/ipc.gyp:ipc',
175 '../skia/skia.gyp:skia', 178 '../skia/skia.gyp:skia',
176 '../third_party/icu/icu.gyp:icuuc', 179 '../third_party/icu/icu.gyp:icuuc',
177 '../third_party/icu/icu.gyp:icui18n', 180 '../third_party/icu/icu.gyp:icui18n',
181 '../ui/events/events.gyp:events_base',
182 '../ui/events/ipc/events_ipc.gyp:events_ipc',
178 '../ui/surface/surface.gyp:surface', 183 '../ui/surface/surface.gyp:surface',
179 'ppapi.gyp:ppapi_c', 184 'ppapi.gyp:ppapi_c',
180 'ppapi_shared', 185 'ppapi_shared',
181 ], 186 ],
182 'all_dependent_settings': { 187 'all_dependent_settings': {
183 'include_dirs': [ 188 'include_dirs': [
184 '..', 189 '..',
185 ], 190 ],
186 }, 191 },
187 # Disable c4267 warnings until we fix size_t to int truncations. 192 # Disable c4267 warnings until we fix size_t to int truncations.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 'type': '<(component)', 225 'type': '<(component)',
221 'variables': { 226 'variables': {
222 'nacl_win64_target': 1, 227 'nacl_win64_target': 1,
223 'ppapi_shared_target': 1, 228 'ppapi_shared_target': 1,
224 }, 229 },
225 'dependencies': [ 230 'dependencies': [
226 'ppapi.gyp:ppapi_c', 231 'ppapi.gyp:ppapi_c',
227 '../base/base.gyp:base_win64', 232 '../base/base.gyp:base_win64',
228 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations_win64', 233 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations_win64',
229 '../ipc/ipc.gyp:ipc_win64', 234 '../ipc/ipc.gyp:ipc_win64',
235 '../ui/events/latency_info_nacl.gyp:latency_info_nacl_win64',
230 ], 236 ],
231 'defines': [ 237 'defines': [
232 '<@(nacl_win64_defines)', 238 '<@(nacl_win64_defines)',
233 ], 239 ],
234 'export_dependent_settings': [ 240 'export_dependent_settings': [
235 '../base/base.gyp:base_win64', 241 '../base/base.gyp:base_win64',
236 ], 242 ],
237 'configurations': { 243 'configurations': {
238 'Common_Base': { 244 'Common_Base': {
239 'msvs_target_platform': 'x64', 245 'msvs_target_platform': 'x64',
240 }, 246 },
241 }, 247 },
242 }, 248 },
243 { 249 {
244 'target_name': 'ppapi_ipc_win64', 250 'target_name': 'ppapi_ipc_win64',
245 'type': 'static_library', 251 'type': 'static_library',
246 'variables': { 252 'variables': {
247 'nacl_win64_target': 1, 253 'nacl_win64_target': 1,
248 'ppapi_ipc_target': 1, 254 'ppapi_ipc_target': 1,
249 }, 255 },
250 'dependencies': [ 256 'dependencies': [
251 '../base/base.gyp:base_win64', 257 '../base/base.gyp:base_win64',
252 '../ipc/ipc.gyp:ipc_win64', 258 '../ipc/ipc.gyp:ipc_win64',
253 '../gpu/gpu.gyp:gpu_ipc_win64', 259 '../gpu/gpu.gyp:gpu_ipc_win64',
260 '../ui/events/latency_info_nacl.gyp:latency_info_nacl_win64',
254 'ppapi.gyp:ppapi_c', 261 'ppapi.gyp:ppapi_c',
255 'ppapi_shared_win64', 262 'ppapi_shared_win64',
256 ], 263 ],
257 'export_dependent_settings': [ 264 'export_dependent_settings': [
258 '../gpu/gpu.gyp:gpu_ipc_win64', 265 '../gpu/gpu.gyp:gpu_ipc_win64',
259 ], 266 ],
260 'defines': [ 267 'defines': [
261 '<@(nacl_win64_defines)', 268 '<@(nacl_win64_defines)',
262 ], 269 ],
263 'all_dependent_settings': { 270 'all_dependent_settings': {
264 'include_dirs': [ 271 'include_dirs': [
265 '..', 272 '..',
266 ], 273 ],
267 }, 274 },
268 'configurations': { 275 'configurations': {
269 'Common_Base': { 276 'Common_Base': {
270 'msvs_target_platform': 'x64', 277 'msvs_target_platform': 'x64',
271 }, 278 },
272 }, 279 },
273 }], 280 }],
274 }], 281 }],
275 ], 282 ],
276 } 283 }
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/ppapi_proxy_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698