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

Side by Side Diff: ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/nacl.scons

Issue 7826017: Add PPB_Fullscreen;0.5. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/c/private/ppb_flash_fullscreen.h ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # This test uses ppapi_test_lib. 6 # This test uses ppapi_test_lib.
7 7
8 Import('env') 8 Import('env')
9 9
10 env.Prepend(CPPDEFINES=['XP_UNIX']) 10 env.Prepend(CPPDEFINES=['XP_UNIX'])
(...skipping 21 matching lines...) Expand all
32 node = env.PPAPIBrowserTester('ppapi_ppb_fullscreen_browser_test.out', 32 node = env.PPAPIBrowserTester('ppapi_ppb_fullscreen_browser_test.out',
33 nmfs=['${TEST_DIR}/ppapi_ppb_fullscreen.nmf'], 33 nmfs=['${TEST_DIR}/ppapi_ppb_fullscreen.nmf'],
34 url='ppapi_ppb_fullscreen.html', 34 url='ppapi_ppb_fullscreen.html',
35 files=env.ExtractPublishedFiles(nexe), 35 files=env.ExtractPublishedFiles(nexe),
36 browser_flags=['--enable-pepper-testing']) 36 browser_flags=['--enable-pepper-testing'])
37 37
38 # Fatal Error on Mac: 38 # Fatal Error on Mac:
39 # ERROR:render_widget_host_view_mac.mm(344)] Not implemented reached in virtual 39 # ERROR:render_widget_host_view_mac.mm(344)] Not implemented reached in virtual
40 # void RenderWidgetHost ViewMac::InitAsFullscreen(RenderWidgetHostView *)Full 40 # void RenderWidgetHost ViewMac::InitAsFullscreen(RenderWidgetHostView *)Full
41 # screen not implemented on Mac 41 # screen not implemented on Mac
42 env.AddNodeToTestSuite(node, 42 env.AddNodeToTestSuite(
43 ['chrome_browser_tests'], 43 node,
44 'run_ppapi_ppb_fullscreen_browser_test', 44 ['chrome_browser_tests'],
45 is_broken=(env.PPAPIBrowserTesterIsBroken() or 45 'run_ppapi_ppb_fullscreen_browser_test',
46 env.Bit('host_mac'))) 46 # New PPB_Fullscreen_Dev implementation only allows transitions to
47 # fullscreen after a user gesture. Until PPB_Testing has the capabilities
48 # to trigger those, we cannot test this automatically.
49 # TODO(polina): update the test to work manually with the new
50 # implementation while we are sorting out the above issue.
51 #is_broken=(env.PPAPIBrowserTesterIsBroken() or env.Bit('host_mac')))
52 is_broken=True)
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_flash_fullscreen.h ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698