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

Side by Side Diff: ppapi/tests/extensions/extensions.gyp

Issue 112663007: Test Keeping NaCl plugins used in app background pages alive when active. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaner fix by simply clearing callbacks in individual tests. Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/tests/extensions/background_keepalive/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 '<(DEPTH)/ppapi/tests/test_utils.h', 22 '<(DEPTH)/ppapi/tests/test_utils.h',
23 ], 23 ],
24 'test_files': [ 24 'test_files': [
25 'socket/controller.js', 25 'socket/controller.js',
26 'socket/index.html', 26 'socket/index.html',
27 'socket/main.js', 27 'socket/main.js',
28 'socket/manifest.json', 28 'socket/manifest.json',
29 ], 29 ],
30 }, 30 },
31 }, 31 },
32 {
33 'target_name': 'ppapi_tests_extensions_background_keepalive',
34 'type': 'none',
35 'variables': {
36 'nexe_target': 'ppapi_tests_extensions_background_keepalive',
37 # Only newlib build is used in tests, no need to build others.
38 'build_newlib': 1,
39 'build_glibc': 0,
40 'build_pnacl_newlib': 0,
41 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/background_kee palive',
42 'sources': [
43 'background_keepalive/background.cc',
44 ],
45 'test_files': [
46 'background_keepalive/background.js',
47 'background_keepalive/manifest.json',
48 ],
49 },
50 },
32 ], 51 ],
33 } 52 }
OLDNEW
« no previous file with comments | « ppapi/tests/extensions/background_keepalive/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698