| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'translate_pexe_with_build': 1, | 90 'translate_pexe_with_build': 1, |
| 91 'enable_x86_32_nonsfi': 1, | 91 'enable_x86_32_nonsfi': 1, |
| 92 }, | 92 }, |
| 93 }], | 93 }], |
| 94 ], | 94 ], |
| 95 # Shim is a dependency for the nexe because we pre-translate. | 95 # Shim is a dependency for the nexe because we pre-translate. |
| 96 'dependencies': [ | 96 'dependencies': [ |
| 97 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi
m.gyp:aot', | 97 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi
m.gyp:aot', |
| 98 ], | 98 ], |
| 99 }, | 99 }, |
| 100 { |
| 101 'target_name': 'ppapi_tests_extensions_socket_permissions', |
| 102 'type': 'none', |
| 103 'variables': { |
| 104 'nexe_target': 'ppapi_tests_extensions_socket_permissions', |
| 105 # Only newlib build is used in tests, no need to build others. |
| 106 'build_newlib': 1, |
| 107 'build_glibc': 0, |
| 108 'build_pnacl_newlib': 0, |
| 109 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/socket_permiss
ions', |
| 110 'sources': [ |
| 111 'socket_permissions/test_socket_permissions.cc', |
| 112 ], |
| 113 'test_files': [ |
| 114 'socket_permissions/controller.js', |
| 115 'socket_permissions/index.html', |
| 116 'socket_permissions/main.js', |
| 117 'socket_permissions/manifest.json', |
| 118 ], |
| 119 }, |
| 120 }, |
| 100 ], | 121 ], |
| 101 } | 122 } |
| OLD | NEW |