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

Side by Side Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 10815039: Make use of -lppapi explicit to allow for correct library order. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 | « no previous file | native_client_sdk/src/build_tools/make_rules.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 """Entry point for both build and try bots 6 """Entry point for both build and try bots
7 7
8 This script is invoked from XXX, usually without arguments 8 This script is invoked from XXX, usually without arguments
9 to package an SDK. It automatically determines whether 9 to package an SDK. It automatically determines whether
10 this SDK is for mac, win, linux. 10 this SDK is for mac, win, linux.
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'multithreaded_input_events', 358 'multithreaded_input_events',
359 'pi_generator', 359 'pi_generator',
360 'pong', 360 'pong',
361 'sine_synth', 361 'sine_synth',
362 'tumbler', 362 'tumbler',
363 'websocket', 363 'websocket',
364 'dlopen', 364 'dlopen',
365 ] 365 ]
366 366
367 LIBRARY_LIST = [ 367 LIBRARY_LIST = [
368 'pthread',
369 'ppapi',
368 'ppapi_cpp', 370 'ppapi_cpp',
369 'ppapi_gles2', 371 'ppapi_gles2',
370 ] 372 ]
371 373
372 LIB_DICT = { 374 LIB_DICT = {
373 'linux': [], 375 'linux': [],
374 'mac': [], 376 'mac': [],
375 'win': ['x86_32'] 377 'win': ['x86_32']
376 } 378 }
377 379
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 manifest_snippet_stream.write(bundle.GetDataAsString()) 749 manifest_snippet_stream.write(bundle.GetDataAsString())
748 750
749 buildbot_common.Archive(tarname + '.json', bucket_path, OUT_DIR, 751 buildbot_common.Archive(tarname + '.json', bucket_path, OUT_DIR,
750 step_link=False) 752 step_link=False)
751 753
752 return 0 754 return 0
753 755
754 756
755 if __name__ == '__main__': 757 if __name__ == '__main__':
756 sys.exit(main(sys.argv)) 758 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/make_rules.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698