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

Side by Side Diff: ports/nacl-spawn/library_dependencies.h

Issue 627103003: Add shared library version of libcli_main Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 6 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
« no previous file with comments | « ports/nacl-spawn/include/spawn.h ('k') | ports/nacl-spawn/nacl_main.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NACL_SPAWN_LIBRARY_DEPENDENCIES_
6 #define NACL_SPAWN_LIBRARY_DEPENDENCIES_
7
8 #include <string>
9 #include <vector>
10
11 // Finds shared objects which are necessary to run |filename|.
12 // Also finds the architecture string |arch|.
13 // Output paths will be stored in |dependencies|. |filename| will be
14 // in |dependencies| if |filename| is dynamically linked. Otherwise,
15 // |dependencies| will be empty. Returns false and update errno
16 // appropriately on error.
17 bool FindArchAndLibraryDependencies(const std::string& filename,
18 std::string* arch,
19 std::vector<std::string>* dependencies);
20
21 #endif // NACL_SPAWN_LIBRARY_DEPENDENCIES_
OLDNEW
« no previous file with comments | « ports/nacl-spawn/include/spawn.h ('k') | ports/nacl-spawn/nacl_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698