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

Side by Side Diff: ppapi/ppapi_proxy_untrusted.gyp

Issue 10167024: Add ipc_channel_nacl to the untrusted build and fix all compile/link errors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 # This GYP file defines untrusted (NaCl) targets. All targets in this 5 # This GYP file defines untrusted (NaCl) targets. All targets in this
6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid
7 # requiring NaCl sources for building. 7 # requiring NaCl sources for building.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ], 195 ],
196 'variables': { 196 'variables': {
197 'nlib_target': 'libipc_untrusted.a', 197 'nlib_target': 'libipc_untrusted.a',
198 'build_glibc': 0, 198 'build_glibc': 0,
199 'build_newlib': 1, 199 'build_newlib': 1,
200 'include_dirs': [ 200 'include_dirs': [
201 '..', 201 '..',
202 ], 202 ],
203 'sources': [ 203 'sources': [
204 '../ipc/file_descriptor_set_posix.cc', 204 '../ipc/file_descriptor_set_posix.cc',
205 # '../ipc/ipc_channel_posix.cc', 205 '../ipc/ipc_channel.cc',
206 '../ipc/ipc_channel_nacl.cc',
206 '../ipc/ipc_channel_proxy.cc', 207 '../ipc/ipc_channel_proxy.cc',
208 '../ipc/ipc_channel_reader.cc',
207 '../ipc/ipc_logging.cc', 209 '../ipc/ipc_logging.cc',
208 '../ipc/ipc_message.cc', 210 '../ipc/ipc_message.cc',
209 '../ipc/ipc_message_utils.cc', 211 '../ipc/ipc_message_utils.cc',
212 '../ipc/ipc_platform_file.cc',
210 '../ipc/ipc_sync_channel.cc', 213 '../ipc/ipc_sync_channel.cc',
211 '../ipc/ipc_sync_message.cc', 214 '../ipc/ipc_sync_message.cc',
212 '../ipc/ipc_sync_message_filter.cc', 215 '../ipc/ipc_sync_message_filter.cc',
213 ], 216 ],
214 'compile_flags': [ 217 'compile_flags': [
215 '-pthread', 218 '-pthread',
216 ], 219 ],
217 'link_flags': [ 220 'link_flags': [
218 '-pthread', 221 '-pthread',
219 '-lbase_untrusted', 222 '-lbase_untrusted',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 # '-lppruntime', 407 # '-lppruntime',
405 '-pthread', 408 '-pthread',
406 '-lgpu_untrusted', 409 '-lgpu_untrusted',
407 '-lipc_untrusted', 410 '-lipc_untrusted',
408 '-lbase_untrusted', 411 '-lbase_untrusted',
409 ], 412 ],
410 }, 413 },
411 }, 414 },
412 ], 415 ],
413 } 416 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698