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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 75483002: Set a base address for chrome_elf (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/win_precompile.gypi', 9 '../build/win_precompile.gypi',
10 '../chrome/version.gypi', 10 '../chrome/version.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'chrome_elf', 14 'target_name': 'chrome_elf',
15 'type': 'shared_library', 15 'type': 'shared_library',
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'chrome_elf.def', 20 'chrome_elf.def',
21 'chrome_elf_main.cc', 21 'chrome_elf_main.cc',
22 'chrome_elf_main.h', 22 'chrome_elf_main.h',
23 ], 23 ],
24 'msvs_settings': {
25 'VCLinkerTool': {
26 'BaseAddress': '0x35000000',
27 # Set /SUBSYSTEM:WINDOWS (for consistency).
28 'SubSystem': '2',
29 },
30 },
24 }, 31 },
25 ], 32 ],
26 } 33 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698