1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'includes': [
'../build/common_untrusted.gypi',
'base.gypi',
],
'conditions': [
['disable_nacl==0 and disable_nacl_untrusted==0', {
'targets': [
{
'target_name': 'base_nacl',
'type': 'none',
'variables': {
'base_target': 1,
'nacl_untrusted_build': 1,
'nlib_target': 'libbase_nacl.a',
'build_glibc': 1,
'build_newlib': 1,
'build_irt': 1,
'build_pnacl_newlib': 1,
'sources': [
'base_switches.cc',
'base_switches.h',
'strings/string16.cc',
'sync_socket_nacl.cc',
'time/time_posix.cc',
],
'gcc_compile_flags': [
'-fno-strict-aliasing',
],
},
'dependencies': [
'<(DEPTH)/native_client/tools.gyp:prep_toolchain',
],
},
{
'target_name': 'base_i18n_nacl',
'type': 'none',
'variables': {
'base_i18n_target': 1,
'nacl_untrusted_build': 1,
'nlib_target': 'libbase_i18n_nacl.a',
'build_glibc': 0,
'build_newlib': 1,
'build_irt': 0,
'build_pnacl_newlib': 1,
'sources': [
'base_switches.cc',
'base_switches.h',
'strings/string16.cc',
'sync_socket_nacl.cc',
'time/time_posix.cc',
],
},
'dependencies': [
'<(DEPTH)/third_party/icu/icu_nacl.gyp:icudata_nacl',
'<(DEPTH)/third_party/icu/icu_nacl.gyp:icui18n_nacl',
'<(DEPTH)/third_party/icu/icu_nacl.gyp:icuuc_nacl',
'<(DEPTH)/native_client/tools.gyp:prep_toolchain',
],
},
],
}],
],
}
|