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

Side by Side Diff: setup_links.py

Issue 1845003004: Enable building with Native Client. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Rebased Created 4 years, 8 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
« no previous file with comments | « chromium/.gclient ('k') | sync_chromium.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) 2014 The WebRTC project authors. All Rights Reserved. 2 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license 4 # Use of this source code is governed by a BSD-style license
5 # that can be found in the LICENSE file in the root of the source 5 # that can be found in the LICENSE file in the root of the source
6 # tree. An additional intellectual property rights grant can be found 6 # tree. An additional intellectual property rights grant can be found
7 # in the file PATENTS. All contributing project authors may 7 # in the file PATENTS. All contributing project authors may
8 # be found in the AUTHORS file in the root of the source tree. 8 # be found in the AUTHORS file in the root of the source tree.
9 9
10 """Setup links to a Chromium checkout for WebRTC. 10 """Setup links to a Chromium checkout for WebRTC.
(...skipping 17 matching lines...) Expand all
28 import shutil 28 import shutil
29 import subprocess 29 import subprocess
30 import sys 30 import sys
31 import textwrap 31 import textwrap
32 32
33 33
34 DIRECTORIES = [ 34 DIRECTORIES = [
35 'build', 35 'build',
36 'buildtools', 36 'buildtools',
37 'google_apis', # Needed by build/common.gypi. 37 'google_apis', # Needed by build/common.gypi.
38 'native_client',
38 'net', 39 'net',
39 'testing', 40 'testing',
40 'third_party/binutils', 41 'third_party/binutils',
41 'third_party/boringssl', 42 'third_party/boringssl',
42 'third_party/colorama', 43 'third_party/colorama',
43 'third_party/drmemory', 44 'third_party/drmemory',
44 'third_party/expat', 45 'third_party/expat',
45 'third_party/icu', 46 'third_party/icu',
46 'third_party/instrumented_libraries', 47 'third_party/instrumented_libraries',
47 'third_party/jsoncpp', 48 'third_party/jsoncpp',
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 except LinkError as e: 511 except LinkError as e:
511 print >> sys.stderr, e.message 512 print >> sys.stderr, e.message
512 return 3 513 return 3
513 finally: 514 finally:
514 links_database.close() 515 links_database.close()
515 return 0 516 return 0
516 517
517 518
518 if __name__ == '__main__': 519 if __name__ == '__main__':
519 sys.exit(main()) 520 sys.exit(main())
OLDNEW
« no previous file with comments | « chromium/.gclient ('k') | sync_chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698