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

Side by Side Diff: src/trusted/service_runtime/service_runtime.gyp

Issue 10905317: Generic containers moved into a separate module (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased with master. Created 8 years, 2 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
« no previous file with comments | « src/trusted/service_runtime/generic_container/container.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- gyp -*- 1 # -*- gyp -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 'conditions': [ 8 'conditions': [
9 ['OS=="linux"', { 9 ['OS=="linux"', {
10 'syscall_handler': [ 10 'syscall_handler': [
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ], 257 ],
258 }], 258 }],
259 ['target_arch == "x64"', { 259 ['target_arch == "x64"', {
260 'dependencies': [ 260 'dependencies': [
261 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64', 261 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64',
262 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64', 262 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64',
263 ], 263 ],
264 }], 264 }],
265 ], 265 ],
266 }, { 266 }, {
267 'target_name': 'container',
268 'type': 'static_library',
269 'sources': [
270 'generic_container/container.c',
271 ],
272 }, {
273 'target_name': 'nacl_error_code', 267 'target_name': 'nacl_error_code',
274 'type': 'static_library', 268 'type': 'static_library',
275 'sources': [ 269 'sources': [
276 'nacl_error_code.c', 270 'nacl_error_code.c',
277 ], 271 ],
278 }, { 272 }, {
279 'target_name': 'env_cleanser', 273 'target_name': 'env_cleanser',
280 'type': 'static_library', 274 'type': 'static_library',
281 'sources': [ 275 'sources': [
282 'env_cleanser.c', 276 'env_cleanser.c',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', 337 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64',
344 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/mani fest_name_service_proxy.gyp:manifest_proxy64', 338 '<(DEPTH)/native_client/src/trusted/manifest_name_service_proxy/mani fest_name_service_proxy.gyp:manifest_proxy64',
345 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gy p:simple_service64', 339 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gy p:simple_service64',
346 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64', 340 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64',
347 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64', 341 '<(DEPTH)/native_client/src/trusted/validator/x86/64/validator_x86_6 4.gyp:ncvalidate_x86_64',
348 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validato rs64', 342 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validato rs64',
349 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common64', 343 'arch/x86/service_runtime_x86.gyp:service_runtime_x86_common64',
350 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64', 344 'arch/x86_64/service_runtime_x86_64.gyp:service_runtime_x86_64',
351 ], 345 ],
352 }, { 346 }, {
353 'target_name': 'container64',
354 'type': 'static_library',
355 'variables': {
356 'win_target': 'x64',
357 },
358 'sources': [
359 'generic_container/container.c',
360 ],
361 },
362 {
363 'target_name': 'nacl_error_code64', 347 'target_name': 'nacl_error_code64',
364 'type': 'static_library', 348 'type': 'static_library',
365 'variables': { 349 'variables': {
366 'win_target': 'x64', 350 'win_target': 'x64',
367 }, 351 },
368 'sources': [ 352 'sources': [
369 'nacl_error_code.c', 353 'nacl_error_code.c',
370 ], 354 ],
371 }, 355 },
372 { 356 {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wra pped_desc64', 398 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wra pped_desc64',
415 ], 399 ],
416 'sources': [ 400 'sources': [
417 'nacl_test_injection_main.c', 401 'nacl_test_injection_main.c',
418 ], 402 ],
419 }, 403 },
420 ], 404 ],
421 }], 405 }],
422 ] 406 ]
423 } 407 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/generic_container/container.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698