OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'includes': [ | 8 'includes': [ |
9 '../build/util/version.gypi', | 9 '../build/util/version.gypi', |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 ], | 118 ], |
119 'sources': [ | 119 'sources': [ |
120 'create_file/chrome_create_file.cc', | 120 'create_file/chrome_create_file.cc', |
121 'create_file/chrome_create_file.h', | 121 'create_file/chrome_create_file.h', |
122 'ntdll_cache.cc', | 122 'ntdll_cache.cc', |
123 'ntdll_cache.h', | 123 'ntdll_cache.h', |
124 ], | 124 ], |
125 'dependencies': [ | 125 'dependencies': [ |
126 'chrome_elf_common', | 126 'chrome_elf_common', |
127 '../base/base.gyp:base_static', | 127 '../base/base.gyp:base_static', |
| 128 '../sandbox/sandbox.gyp:sandbox', |
128 ], | 129 ], |
129 }, | 130 }, |
130 { | 131 { |
131 'target_name': 'chrome_elf_constants', | 132 'target_name': 'chrome_elf_constants', |
132 'type': 'static_library', | 133 'type': 'static_library', |
133 'include_dirs': [ | 134 'include_dirs': [ |
134 '..', | 135 '..', |
135 ], | 136 ], |
136 'sources': [ | 137 'sources': [ |
137 'chrome_elf_constants.cc', | 138 'chrome_elf_constants.cc', |
138 'chrome_elf_constants.h', | 139 'chrome_elf_constants.h', |
139 ], | 140 ], |
140 }, | 141 }, |
141 { | 142 { |
142 'target_name': 'chrome_elf_common', | 143 'target_name': 'chrome_elf_common', |
143 'type': 'static_library', | 144 'type': 'static_library', |
144 'dependencies': [ | 145 'dependencies': [ |
145 'chrome_elf_constants', | 146 'chrome_elf_constants', |
146 ], | 147 ], |
147 'include_dirs': [ | 148 'include_dirs': [ |
148 '..', | 149 '..', |
149 ], | 150 ], |
150 'sources': [ | 151 'sources': [ |
151 'chrome_elf_types.h', | 152 'chrome_elf_types.h', |
152 'chrome_elf_util.cc', | 153 'chrome_elf_util.cc', |
153 'chrome_elf_util.h', | 154 'chrome_elf_util.h', |
| 155 'thunk_getter.cc', |
| 156 'thunk_getter.h', |
154 ], | 157 ], |
155 }, | 158 }, |
156 { | 159 { |
157 'target_name': 'chrome_elf_breakpad', | 160 'target_name': 'chrome_elf_breakpad', |
158 'type': 'static_library', | 161 'type': 'static_library', |
159 'include_dirs': [ | 162 'include_dirs': [ |
160 '..', | 163 '..', |
161 '<(SHARED_INTERMEDIATE_DIR)', | 164 '<(SHARED_INTERMEDIATE_DIR)', |
162 ], | 165 ], |
163 'sources': [ | 166 'sources': [ |
(...skipping 29 matching lines...) Expand all Loading... |
193 # Set /SUBSYSTEM:WINDOWS. | 196 # Set /SUBSYSTEM:WINDOWS. |
194 'SubSystem': '2', | 197 'SubSystem': '2', |
195 }, | 198 }, |
196 }, | 199 }, |
197 }, | 200 }, |
198 ], | 201 ], |
199 }], | 202 }], |
200 ], | 203 ], |
201 } | 204 } |
202 | 205 |
OLD | NEW |