| 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 { |
| 11 'target_name': 'ppapi_tests_extensions_background_keepalive', | 11 'target_name': 'ppapi_tests_extensions_background_keepalive', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'variables': { | 13 'variables': { |
| 14 'nexe_target': 'ppapi_tests_extensions_background_keepalive', | 14 'nexe_target': 'ppapi_tests_extensions_background_keepalive', |
| 15 # Only newlib build is used in tests, no need to build others. | 15 # Only newlib build is used in tests, no need to build others. |
| 16 'build_newlib': 1, | 16 'build_newlib': 1, |
| 17 'build_glibc': 0, | 17 'build_glibc': 0, |
| 18 'build_pnacl_newlib': 0, | 18 'build_pnacl_newlib': 0, |
| 19 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/background_kee
palive', | 19 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/background_kee
palive', |
| 20 'sources': [ | 20 'sources': [ |
| 21 'background_keepalive/background.cc', | 21 'background_keepalive/background.cc', |
| 22 ], | 22 ], |
| 23 'test_files': [ | 23 'test_files': [ |
| 24 'background_keepalive/background.js', | 24 'background_keepalive/background.js', |
| 25 'background_keepalive/manifest.json', | 25 'background_keepalive/manifest.json', |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 'target_name': 'ppapi_tests_extensions_load_unload', |
| 31 'type': 'none', |
| 32 'variables': { |
| 33 'nexe_target': 'ppapi_tests_extensions_load_unload', |
| 34 # Only newlib build is used in tests, no need to build others. |
| 35 'build_newlib': 1, |
| 36 'build_glibc': 0, |
| 37 'build_pnacl_newlib': 0, |
| 38 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/load_unload', |
| 39 'sources': [ |
| 40 'load_unload/load_unload.cc', |
| 41 ], |
| 42 'test_files': [ |
| 43 'load_unload/background.js', |
| 44 'load_unload/ext_icon.png', |
| 45 'load_unload/manifest.json', |
| 46 ], |
| 47 }, |
| 48 }, |
| 49 { |
| 30 'target_name': 'ppapi_tests_extensions_media_galleries', | 50 'target_name': 'ppapi_tests_extensions_media_galleries', |
| 31 'type': 'none', | 51 'type': 'none', |
| 32 'variables': { | 52 'variables': { |
| 33 'nexe_target': 'ppapi_tests_extensions_media_galleries', | 53 'nexe_target': 'ppapi_tests_extensions_media_galleries', |
| 34 # Only newlib build is used in tests, no need to build others. | 54 # Only newlib build is used in tests, no need to build others. |
| 35 'build_newlib': 1, | 55 'build_newlib': 1, |
| 36 'build_glibc': 0, | 56 'build_glibc': 0, |
| 37 'build_pnacl_newlib': 0, | 57 'build_pnacl_newlib': 0, |
| 38 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/media_gallerie
s', | 58 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/media_gallerie
s', |
| 39 'sources': [ | 59 'sources': [ |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 'test_files': [ | 255 'test_files': [ |
| 236 'socket_permissions/controller.js', | 256 'socket_permissions/controller.js', |
| 237 'socket_permissions/index.html', | 257 'socket_permissions/index.html', |
| 238 'socket_permissions/main.js', | 258 'socket_permissions/main.js', |
| 239 'socket_permissions/manifest.json', | 259 'socket_permissions/manifest.json', |
| 240 ], | 260 ], |
| 241 }, | 261 }, |
| 242 }, | 262 }, |
| 243 ], | 263 ], |
| 244 } | 264 } |
| OLD | NEW |