OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'media_galleries/manifest.json', | 47 'media_galleries/manifest.json', |
48 'media_galleries/test.js', | 48 'media_galleries/test.js', |
49 ], | 49 ], |
50 }, | 50 }, |
51 }, | 51 }, |
52 { | 52 { |
53 'target_name': 'ppapi_tests_extensions_packaged_app', | 53 'target_name': 'ppapi_tests_extensions_packaged_app', |
54 'type': 'none', | 54 'type': 'none', |
55 'variables': { | 55 'variables': { |
56 'nexe_target': 'ppapi_tests_extensions_packaged_app', | 56 'nexe_target': 'ppapi_tests_extensions_packaged_app', |
57 # TODO(teravest): Add testing for glibc, pnacl, and nonsfi modes. | |
58 'build_newlib': 1, | 57 'build_newlib': 1, |
59 'build_glibc': 0, | 58 'build_glibc': 0, |
60 'build_pnacl_newlib': 0, | |
61 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/packaged_app', | 59 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/packaged_app', |
62 'sources': [ | 60 'sources': [ |
63 'packaged_app/test_packaged_app.cc' | 61 'packaged_app/test_packaged_app.cc' |
64 ], | 62 ], |
65 'test_files': [ | 63 'test_files': [ |
66 'packaged_app/controller.js', | 64 'packaged_app/controller.js', |
67 'packaged_app/index.html', | 65 'packaged_app/index.html', |
68 'packaged_app/main.js', | 66 'packaged_app/main.js', |
69 'packaged_app/manifest.json', | 67 'packaged_app/manifest.json', |
70 ], | 68 ], |
71 }, | 69 }, |
| 70 'conditions': [ |
| 71 ['target_arch=="ia32" and OS=="linux"', { |
| 72 # Enable nonsfi testing only on ia32-linux environment. |
| 73 # See chrome/test/data/nacl/nacl_test_data.gyp for more info. |
| 74 'variables': { |
| 75 'build_pnacl_newlib': 1, |
| 76 'translate_pexe_with_build': 1, |
| 77 'enable_x86_32_nonsfi': 1, |
| 78 }, |
| 79 }], |
| 80 ], |
| 81 # Shim is a dependency for the nexe because we pre-translate. |
| 82 'dependencies': [ |
| 83 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi
m.gyp:aot', |
| 84 ], |
72 }, | 85 }, |
73 ], | 86 ], |
74 } | 87 } |
OLD | NEW |