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. | 57 # TODO(teravest): Add testing for glibc, pnacl, and nonsfi modes. |
dmichael (off chromium)
2014/11/12 18:49:14
nit: This TODO can go away now
teravest
2014/11/12 20:02:05
Done.
| |
58 'build_newlib': 1, | 58 'build_newlib': 1, |
59 'build_glibc': 0, | 59 'build_glibc': 0, |
60 'build_pnacl_newlib': 0, | 60 'build_pnacl_newlib': 1, |
61 'translate_pexe_with_build': 1, | |
62 'enable_x86_32_nonsfi': 1, | |
61 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/packaged_app', | 63 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/packaged_app', |
62 'sources': [ | 64 'sources': [ |
63 'packaged_app/test_packaged_app.cc' | 65 'packaged_app/test_packaged_app.cc' |
64 ], | 66 ], |
65 'test_files': [ | 67 'test_files': [ |
66 'packaged_app/controller.js', | 68 'packaged_app/controller.js', |
67 'packaged_app/index.html', | 69 'packaged_app/index.html', |
68 'packaged_app/main.js', | 70 'packaged_app/main.js', |
69 'packaged_app/manifest.json', | 71 'packaged_app/manifest.json', |
70 ], | 72 ], |
71 }, | 73 }, |
74 # Shim is a dependency for the nexe because we pre-translate. | |
75 'dependencies': [ | |
76 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi m.gyp:aot', | |
77 ], | |
72 }, | 78 }, |
73 ], | 79 ], |
74 } | 80 } |
OLD | NEW |