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

Side by Side Diff: site_scons/site_tools/library_deps.py

Issue 12316093: Serialization library. Useful for sending more complex data in RPCs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: added missing NACL_WUR and CHECKs detected by clang Created 7 years, 10 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 | « build/all.gyp ('k') | src/shared/serialization/build.scons » ('j') | 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) 2012 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client 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 """Harness for defining library dependencies for scons files.""" 5 """Harness for defining library dependencies for scons files."""
6 6
7 7
8 # The following is a map from a library, to the corresponding 8 # The following is a map from a library, to the corresponding
9 # list of dependent libraries that must be included after that library, in 9 # list of dependent libraries that must be included after that library, in
10 # the list of libraries. 10 # the list of libraries.
(...skipping 24 matching lines...) Expand all
35 'sel', 35 'sel',
36 ], 36 ],
37 'sel_main_chrome': [ 37 'sel_main_chrome': [
38 'sel', 38 'sel',
39 'debug_stub', 39 'debug_stub',
40 ], 40 ],
41 'sel_main': [ 41 'sel_main': [
42 'sel', 42 'sel',
43 'debug_stub', 43 'debug_stub',
44 ], 44 ],
45 'serialization': [
46 'platform',
47 ],
45 'testrunner_browser': [ 48 'testrunner_browser': [
46 'ppapi', 49 'ppapi',
47 ], 50 ],
48 'arm_validator_core': [ 51 'arm_validator_core': [
49 'cpu_features', 52 'cpu_features',
50 ], 53 ],
51 } 54 }
52 55
53 # Untrusted only library dependencies. 56 # Untrusted only library dependencies.
54 # Include names here that otherwise clash with trusted names. 57 # Include names here that otherwise clash with trusted names.
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 closure.append(library) 242 closure.append(library)
240 243
241 # Ideally we would just do "VisitList(libraries)" here, but some 244 # Ideally we would just do "VisitList(libraries)" here, but some
242 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" 245 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp"
243 # twice in the link line, and we need to maintain these duplicates. 246 # twice in the link line, and we need to maintain these duplicates.
244 for library in reversed(libraries): 247 for library in reversed(libraries):
245 VisitLibrary(library) 248 VisitLibrary(library)
246 249
247 closure.reverse() 250 closure.reverse()
248 return closure 251 return closure
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | src/shared/serialization/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698