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

Side by Side Diff: components/nacl_nonsfi.gyp

Issue 646643002: Non-SFI Mode: Build libevent with PNaCl toolchain for nacl_helper_nonsfi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@newlib5
Patch Set: Rebase and fixed missing dependencies. 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common_untrusted.gypi', 10 '../build/common_untrusted.gypi',
(...skipping 18 matching lines...) Expand all
29 'build_glibc': 0, 29 'build_glibc': 0,
30 'build_newlib': 0, 30 'build_newlib': 0,
31 'build_irt': 0, 31 'build_irt': 0,
32 'build_pnacl_newlib': 0, 32 'build_pnacl_newlib': 0,
33 'build_nonsfi_helper': 1, 33 'build_nonsfi_helper': 1,
34 34
35 'sources': [ 35 'sources': [
36 'nacl/loader/nacl_helper_linux.cc', 36 'nacl/loader/nacl_helper_linux.cc',
37 'nacl/loader/nacl_helper_linux.h', 37 'nacl/loader/nacl_helper_linux.h',
38 ], 38 ],
39
40 'conditions': [
41 ['target_arch=="ia32" or target_arch=="x64"', {
42 'extra_deps_newlib32_nonsfi': [
Junichi Uekawa 2014/10/10 02:47:52 dumb question, where does this symbol get used ?
hidehiko 2014/10/10 06:27:40 In native_client/build/untrusted.gypi's dependency
43 '>(tc_lib_dir_nonsfi_helper32)/libevent_nonsfi_nacl.a',
44 ],
45 }],
46 ],
39 }, 47 },
40 'dependencies': [ 48 'dependencies': [
41 '<(DEPTH)/native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private', 49 '<(DEPTH)/native_client/src/nonsfi/irt/irt.gyp:nacl_sys_private',
42 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib' , 50 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib' ,
43 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 51 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
52
53 # TODO(hidehiko): Remove this when we introduce base/.
54 # This dependency is introduced to make sure the library is actualy
55 # built successfully.
56 '<(DEPTH)/third_party/libevent/libevent_nacl.gyp:event_nonsfi_nacl',
44 ], 57 ],
45 }, 58 },
46 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests. 59 # TODO(hidehiko): Add Non-SFI version of nacl_loader_unittests.
47 ], 60 ],
48 }], 61 }],
49 ], 62 ],
50 } 63 }
OLDNEW
« no previous file with comments | « no previous file | third_party/libevent/README.chromium » ('j') | third_party/libevent/README.chromium » ('J')

Powered by Google App Engine
This is Rietveld 408576698