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

Side by Side Diff: chrome/test/data/nacl/nacl_test_data.gyp

Issue 418423002: Pepper: Stop using SRPC for irt_open_resource(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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 'includes': [ 6 'includes': [
7 '../../../../ppapi/ppapi_nacl_test_common.gypi', 7 '../../../../ppapi/ppapi_nacl_test_common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 }, 520 },
521 'dependencies': [ 521 'dependencies': [
522 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 522 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
523 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', 523 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
524 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', 524 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
525 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', 525 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
526 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', 526 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
527 ], 527 ],
528 }, 528 },
529 { 529 {
530 'target_name': 'pm_manifest_file',
531 'type': 'none',
532 'variables': {
533 'nexe_target': 'pm_manifest_file',
534 'build_newlib': 1,
535 'build_glibc': 1,
536 # TODO(ncbray) support file injection into PNaCl manifest.
537 'build_pnacl_newlib': 0,
538 'nexe_destination_dir': 'nacl_test_data',
539 'link_flags': [
540 '-lnacl_ppapi_util',
541 '-lppapi_cpp',
542 '-lppapi',
543 '-lsrpc',
544 '-lplatform',
545 '-lgio',
546 '-limc',
547 '-limc_syscalls',
548 '-lweak_ref',
549 ],
550 'sources': [
551 'manifest_file/pm_manifest_file_test.cc',
552 ],
553 'create_nmf_args_portable': [
554 '-xtest_file:test_file.txt',
555 '-xnmf says hello world:test_file.txt',
556 ],
557 'test_files': [
558 'manifest_file/pm_manifest_file_test.html',
559 ],
560 },
561 'dependencies': [
562 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
563 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
564 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
565 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:srpc_lib',
566 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
567 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
568 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_lib',
569 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
570 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib',
571 'nacl_ppapi_util',
572 ],
573 },
574 {
575 'target_name': 'pm_pre_init_manifest_file',
576 'type': 'none',
577 'variables': {
578 'nexe_target': 'pm_pre_init_manifest_file',
579 'build_newlib': 1,
580 'build_glibc': 1,
581 # TODO(ncbray) support file injection into PNaCl manifest.
582 'build_pnacl_newlib': 0,
583 'nexe_destination_dir': 'nacl_test_data',
584 'link_flags': [
585 '-lnacl_ppapi_util',
586 '-lppapi_cpp',
587 '-lppapi',
588 '-lsrpc',
589 '-lplatform',
590 '-lgio',
591 '-limc',
592 '-limc_syscalls',
593 '-lweak_ref',
594 ],
595 'sources': [
596 'manifest_file/pm_pre_init_manifest_file_test.cc',
597 ],
598 'create_nmf_args_portable': [
599 '-xtest_file:test_file.txt',
600 '-xnmf says hello world:test_file.txt',
601 ],
602 'test_files': [
603 'manifest_file/pm_pre_init_manifest_file_test.html',
604 ],
605 },
606 'dependencies': [
607 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
608 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
609 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
610 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:srpc_lib',
611 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
612 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
613 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_lib',
614 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
615 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib',
616 'nacl_ppapi_util',
617 ],
618 },
619 {
620 'target_name': 'irt_manifest_file', 530 'target_name': 'irt_manifest_file',
621 'type': 'none', 531 'type': 'none',
622 'variables': { 532 'variables': {
623 'nexe_target': 'irt_manifest_file', 533 'nexe_target': 'irt_manifest_file',
624 'build_newlib': 1, 534 'build_newlib': 1,
625 # Linking problems - can't find __nacl_irt_query. 535 # Linking problems - can't find __nacl_irt_query.
626 'build_glibc': 0, 536 'build_glibc': 0,
627 # TODO(ncbray) support file injection into PNaCl manifest. 537 # TODO(ncbray) support file injection into PNaCl manifest.
628 'build_pnacl_newlib': 0, 538 'build_pnacl_newlib': 0,
629 'nexe_destination_dir': 'nacl_test_data', 539 'nexe_destination_dir': 'nacl_test_data',
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 'files': [ 1114 'files': [
1205 '>@(test_files)', 1115 '>@(test_files)',
1206 ], 1116 ],
1207 }, 1117 },
1208 ], 1118 ],
1209 }, 1119 },
1210 ], 1120 ],
1211 }], 1121 }],
1212 ], 1122 ],
1213 } 1123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698