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

Side by Side Diff: ppapi/ppapi_proxy.gypi

Issue 164373010: Split the PNaCl IRT shim into 3 pieces, and include one piece into IRT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix up mips Created 6 years, 10 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'ppapi_proxy_target': 0, 8 'ppapi_proxy_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'proxy/video_source_resource.h', 232 'proxy/video_source_resource.h',
233 'proxy/websocket_resource.cc', 233 'proxy/websocket_resource.cc',
234 'proxy/websocket_resource.h', 234 'proxy/websocket_resource.h',
235 ], 235 ],
236 'defines': [ 236 'defines': [
237 'PPAPI_PROXY_IMPLEMENTATION', 237 'PPAPI_PROXY_IMPLEMENTATION',
238 ], 238 ],
239 'include_dirs': [ 239 'include_dirs': [
240 '..', 240 '..',
241 ], 241 ],
242 'target_conditions': [ 242 'target_conditions': [
Mark Seaborn 2014/02/26 22:11:03 Undo whitespace change here
jvoung (off chromium) 2014/02/27 01:39:55 Done.
243 ['>(nacl_untrusted_build)==1', { 243 ['>(nacl_untrusted_build)==1', {
244 'sources': [ 244 'sources': [
245 'proxy/irt_ppapi.c', 245 'proxy/irt_ppapi.c',
246 'proxy/irt_shim_ppapi.c',
246 'proxy/plugin_main_irt.cc', 247 'proxy/plugin_main_irt.cc',
247 'proxy/plugin_main_irt.h', 248 'proxy/plugin_main_irt.h',
248 ], 249 ],
249 'sources!': [ 250 'sources!': [
250 'proxy/audio_input_resource.cc', 251 'proxy/audio_input_resource.cc',
251 'proxy/broker_dispatcher.cc', 252 'proxy/broker_dispatcher.cc',
252 'proxy/browser_font_singleton_resource.cc', 253 'proxy/browser_font_singleton_resource.cc',
253 'proxy/device_enumeration_resource_helper.cc', 254 'proxy/device_enumeration_resource_helper.cc',
254 'proxy/flash_clipboard_resource.cc', 255 'proxy/flash_clipboard_resource.cc',
255 'proxy/flash_drm_resource.cc', 256 'proxy/flash_drm_resource.cc',
(...skipping 21 matching lines...) Expand all
277 'proxy/serialized_flash_menu.cc', 278 'proxy/serialized_flash_menu.cc',
278 'proxy/talk_resource.cc', 279 'proxy/talk_resource.cc',
279 'proxy/video_capture_resource.cc', 280 'proxy/video_capture_resource.cc',
280 ], 281 ],
281 }], 282 }],
282 ], 283 ],
283 }], 284 }],
284 ], 285 ],
285 }, 286 },
286 } 287 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698