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

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

Issue 535223002: NaCl: Remove SRPC-based manifest tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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
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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 'dependencies': [ 491 'dependencies': [
492 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 492 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
493 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', 493 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
494 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', 494 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
495 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', 495 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
496 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', 496 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
497 'ppapi_test_lib', 497 'ppapi_test_lib',
498 ], 498 ],
499 }, 499 },
500 { 500 {
501 'target_name': 'pm_manifest_file',
502 'type': 'none',
503 'variables': {
504 'nexe_target': 'pm_manifest_file',
505 'build_newlib': 1,
506 'build_glibc': 1,
507 # TODO(ncbray) support file injection into PNaCl manifest.
508 'build_pnacl_newlib': 0,
509 'nexe_destination_dir': 'nacl_test_data',
510 'link_flags': [
511 '-lnacl_ppapi_util',
512 '-lppapi_cpp',
513 '-lppapi',
514 '-lsrpc',
515 '-lplatform',
516 '-lgio',
517 '-limc',
518 '-limc_syscalls',
519 '-lweak_ref',
520 ],
521 'sources': [
522 'manifest_file/pm_manifest_file_test.cc',
523 ],
524 'create_nmf_args_portable': [
525 '-xtest_file:test_file.txt',
526 '-xnmf says hello world:test_file.txt',
527 ],
528 'test_files': [
529 'manifest_file/pm_manifest_file_test.html',
530 ],
531 },
532 'dependencies': [
533 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
534 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
535 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
536 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:srpc_lib',
537 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
538 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
539 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_lib',
540 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
541 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib',
542 'nacl_ppapi_util',
543 ],
544 },
545 {
546 'target_name': 'pm_pre_init_manifest_file',
547 'type': 'none',
548 'variables': {
549 'nexe_target': 'pm_pre_init_manifest_file',
550 'build_newlib': 1,
551 'build_glibc': 1,
552 # TODO(ncbray) support file injection into PNaCl manifest.
553 'build_pnacl_newlib': 0,
554 'nexe_destination_dir': 'nacl_test_data',
555 'link_flags': [
556 '-lnacl_ppapi_util',
557 '-lppapi_cpp',
558 '-lppapi',
559 '-lsrpc',
560 '-lplatform',
561 '-lgio',
562 '-limc',
563 '-limc_syscalls',
564 '-lweak_ref',
565 ],
566 'sources': [
567 'manifest_file/pm_pre_init_manifest_file_test.cc',
568 ],
569 'create_nmf_args_portable': [
570 '-xtest_file:test_file.txt',
571 '-xnmf says hello world:test_file.txt',
572 ],
573 'test_files': [
574 'manifest_file/pm_pre_init_manifest_file_test.html',
575 ],
576 },
577 'dependencies': [
578 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
579 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
580 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
581 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:srpc_lib',
582 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib',
583 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib',
584 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_lib',
585 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib',
586 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib',
587 'nacl_ppapi_util',
588 ],
589 },
590 {
591 'target_name': 'irt_manifest_file', 501 'target_name': 'irt_manifest_file',
592 'type': 'none', 502 'type': 'none',
593 'variables': { 503 'variables': {
594 'nexe_target': 'irt_manifest_file', 504 'nexe_target': 'irt_manifest_file',
595 'build_newlib': 1, 505 'build_newlib': 1,
596 # Linking problems - can't find __nacl_irt_query. 506 # Linking problems - can't find __nacl_irt_query.
597 'build_glibc': 0, 507 'build_glibc': 0,
598 # TODO(ncbray) support file injection into PNaCl manifest. 508 # TODO(ncbray) support file injection into PNaCl manifest.
599 'build_pnacl_newlib': 0, 509 'build_pnacl_newlib': 0,
600 'nexe_destination_dir': 'nacl_test_data', 510 'nexe_destination_dir': 'nacl_test_data',
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 'files': [ 1085 'files': [
1176 '>@(test_files)', 1086 '>@(test_files)',
1177 ], 1087 ],
1178 }, 1088 },
1179 ], 1089 ],
1180 }, 1090 },
1181 ], 1091 ],
1182 }], 1092 }],
1183 ], 1093 ],
1184 } 1094 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698