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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 183833004: Make chrome_elf use thunks instead of function pointers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use thunk instead of lookup table Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 '..', 117 '..',
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',
128 '../sandbox/sandbox.gyp:sandbox',
127 ], 129 ],
128 }, 130 },
129 { 131 {
130 'target_name': 'chrome_elf_constants', 132 'target_name': 'chrome_elf_constants',
131 'type': 'static_library', 133 'type': 'static_library',
132 'include_dirs': [ 134 'include_dirs': [
133 '..', 135 '..',
134 ], 136 ],
135 'sources': [ 137 'sources': [
136 'chrome_elf_constants.cc', 138 'chrome_elf_constants.cc',
137 'chrome_elf_constants.h', 139 'chrome_elf_constants.h',
138 ], 140 ],
139 }, 141 },
140 { 142 {
141 'target_name': 'chrome_elf_common', 143 'target_name': 'chrome_elf_common',
142 'type': 'static_library', 144 'type': 'static_library',
143 'dependencies': [ 145 'dependencies': [
144 'chrome_elf_constants', 146 'chrome_elf_constants',
145 ], 147 ],
146 'include_dirs': [ 148 'include_dirs': [
147 '..', 149 '..',
148 ], 150 ],
149 'sources': [ 151 'sources': [
150 'chrome_elf_types.h', 152 'chrome_elf_types.h',
151 'chrome_elf_util.cc', 153 'chrome_elf_util.cc',
152 'chrome_elf_util.h', 154 'chrome_elf_util.h',
155 'thunk_getter.cc',
156 'thunk_getter.h',
153 ], 157 ],
154 }, 158 },
155 { 159 {
156 'target_name': 'chrome_elf_breakpad', 160 'target_name': 'chrome_elf_breakpad',
157 'type': 'static_library', 161 'type': 'static_library',
158 'include_dirs': [ 162 'include_dirs': [
159 '..', 163 '..',
160 '<(SHARED_INTERMEDIATE_DIR)', 164 '<(SHARED_INTERMEDIATE_DIR)',
161 ], 165 ],
162 'sources': [ 166 'sources': [
(...skipping 29 matching lines...) Expand all
192 # Set /SUBSYSTEM:WINDOWS. 196 # Set /SUBSYSTEM:WINDOWS.
193 'SubSystem': '2', 197 'SubSystem': '2',
194 }, 198 },
195 }, 199 },
196 }, 200 },
197 ], 201 ],
198 }], 202 }],
199 ], 203 ],
200 } 204 }
201 205
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698