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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
| # Copyright 2009 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.
|
| {
| 'includes': [
| '../build/common.gypi',
| ],
|
| 'targets': [
| {
| 'target_name': 'base',
| 'type': 'static_library',
| 'include_dirs': [
| '..',
| ],
| 'link_settings': {
| 'conditions': [
| ['OS=="mac"', {
| 'libraries': [
| '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
| '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
| '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
| '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
| '$(SDKROOT)/System/Library/Frameworks/Security.framework',
| ],
| }],
| ['OS=="win"', {
| 'libraries': [
| '-ladvapi32.lib',
| ],
| }],
| ['OS=="android"', {
| 'libraries': [
| '-llog',
| ],
| }],
|
| ],
| },
| 'sources': [
| 'atomicops.h',
| 'atomicops_internals_atomicword_compat.h',
| 'atomicops_internals_portable.h',
| 'auto_reset.h',
| 'bit_cast.h',
| 'compiler_specific.h',
| 'debug/alias.cc',
| 'debug/alias.h',
| 'files/file_path.cc',
| 'files/file_path.h',
| 'files/file_util.h',
| 'files/file_util_posix.cc',
| 'files/scoped_file.cc',
| 'files/scoped_file.h',
| 'format_macros.h',
| 'logging.cc',
| 'logging.h',
| 'mac/close_nocancel.cc',
| 'mac/foundation_util.h',
| 'mac/foundation_util.mm',
| 'mac/mach_logging.h',
| 'mac/mach_logging.cc',
| 'mac/scoped_cftyperef.h',
| 'mac/scoped_ioobject.h',
| 'mac/scoped_launch_data.h',
| 'mac/scoped_mach_port.cc',
| 'mac/scoped_mach_port.h',
| 'mac/scoped_mach_vm.cc',
| 'mac/scoped_mach_vm.h',
| 'mac/scoped_nsautorelease_pool.h',
| 'mac/scoped_nsautorelease_pool.mm',
| 'mac/scoped_nsobject.h',
| 'mac/scoped_typeref.h',
| 'macros.h',
| 'memory/free_deleter.h',
| 'memory/scoped_policy.h',
| 'metrics/histogram_functions.h',
| 'metrics/histogram_macros.h',
| 'metrics/persistent_histogram_allocator.h',
| 'numerics/checked_math.h',
| 'numerics/checked_math_impl.h',
| 'numerics/clamped_math.h',
| 'numerics/clamped_math_impl.h',
| 'numerics/safe_conversions.h',
| 'numerics/safe_conversions_arm_impl.h',
| 'numerics/safe_conversions_impl.h',
| 'numerics/safe_math.h',
| 'numerics/safe_math_arm_impl.h',
| 'numerics/safe_math_clang_gcc_impl.h',
| 'numerics/safe_math_shared_impl.h',
| 'posix/eintr_wrapper.h',
| 'posix/safe_strerror.cc',
| 'posix/safe_strerror.h',
| 'process/memory.cc',
| 'process/memory.h',
| 'process/process_metrics.h',
| 'process/process_metrics_posix.cc',
| 'process/process_metrics_win.cc',
| 'rand_util.cc',
| 'rand_util.h',
| 'scoped_clear_last_error.h',
| 'scoped_generic.h',
| 'stl_util.h',
| 'strings/string16.cc',
| 'strings/string16.h',
| 'strings/string_number_conversions.cc',
| 'strings/string_number_conversions.h',
| 'strings/string_piece.h',
| 'strings/string_util.cc',
| 'strings/string_util.h',
| 'strings/string_util_posix.h',
| 'strings/string_util_win.cc',
| 'strings/string_util_win.h',
| 'strings/stringprintf.cc',
| 'strings/stringprintf.h',
| 'strings/sys_string_conversions.h',
| 'strings/sys_string_conversions_mac.mm',
| 'strings/utf_string_conversion_utils.cc',
| 'strings/utf_string_conversion_utils.h',
| 'strings/utf_string_conversions.cc',
| 'strings/utf_string_conversions.h',
| 'synchronization/condition_variable.h',
| 'synchronization/condition_variable_posix.cc',
| 'synchronization/lock.cc',
| 'synchronization/lock.h',
| 'synchronization/lock_impl.h',
| 'synchronization/lock_impl_posix.cc',
| 'synchronization/lock_impl_win.cc',
| 'sys_byteorder.h',
| 'template_util.h',
| 'third_party/icu/icu_utf.cc',
| 'third_party/icu/icu_utf.h',
| 'threading/thread_local_storage.cc',
| 'threading/thread_local_storage.h',
| 'threading/thread_local_storage_posix.cc',
| 'threading/thread_local_storage_win.cc',
| '../build/build_config.h',
| ],
| 'direct_dependent_settings': {
| 'include_dirs': [
| '..',
| ],
| },
| },
| ],
| }
|
|