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

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

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 years, 4 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
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 #
6
7 Import('env')
8
9 env.Prepend(CPPDEFINES=['XP_UNIX'])
10 env.Replace(TEST_DIR='${SOURCE_ROOT}/ppapi/native_client/tests/ppapi_browser/' +
11 'ppb_widget')
12
13 nexe = env.ProgramNameForNmf('ppapi_ppb_widget')
14 env.Alias('ppapi_ppb_widget${PROGSUFFIX}',
15 ['$STAGING_DIR/%s${PROGSUFFIX}' % nexe])
16
17 ppapi_ppb_widget_nexe = env.ComponentProgram(
18 nexe,
19 ['ppapi_ppb_widget.cc'],
20 EXTRA_LIBS=['${PPAPI_LIBS}',
21 'ppapi_test_lib',
22 'platform', # for CHECK
23 'pthread',
24 'gio',
25 ])
26
27 env.Publish(nexe, 'run',
28 ['ppapi_ppb_widget.html',
29 'ppapi_ppb_widget.js'])
30
31 node = env.PPAPIBrowserTester('ppapi_ppb_widget_browser_test.out',
32 url='ppapi_ppb_widget.html',
33 nmf_names=['ppapi_ppb_widget'],
34 files=env.ExtractPublishedFiles(nexe))
35
36 env.AddNodeToTestSuite(node,
37 ['chrome_browser_tests'],
38 'run_ppapi_ppb_widget_browser_test',
39 is_broken=env.PPAPIBrowserTesterIsBroken())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698