summaryrefslogtreecommitdiffstats
path: root/chrome_elf
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_elf')
-rw-r--r--chrome_elf/chrome_elf.def4
-rw-r--r--chrome_elf/chrome_elf.gyp9
2 files changed, 12 insertions, 1 deletions
diff --git a/chrome_elf/chrome_elf.def b/chrome_elf/chrome_elf.def
index 1703016..d3ca82f 100644
--- a/chrome_elf/chrome_elf.def
+++ b/chrome_elf/chrome_elf.def
@@ -1,3 +1,7 @@
+; Copyright 2013 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.
+
LIBRARY "chrome_elf.dll"
EXPORTS
diff --git a/chrome_elf/chrome_elf.gyp b/chrome_elf/chrome_elf.gyp
index c32f710..a8f15bd 100644
--- a/chrome_elf/chrome_elf.gyp
+++ b/chrome_elf/chrome_elf.gyp
@@ -21,6 +21,13 @@
'chrome_elf_main.cc',
'chrome_elf_main.h',
],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'BaseAddress': '0x01c20000',
+ # Set /SUBSYSTEM:WINDOWS for chrome_elf.dll (for consistency).
+ 'SubSystem': '2',
+ },
+ },
},
],
-} \ No newline at end of file
+}