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

Unified Diff: test/win/linker_flags/fixed-base.gyp

Issue 9460049: Next level of changes to get more of Chrome building (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: wip Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/win/linker_flags/dep.gyp ('k') | test/win/linker_flags/hello.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker_flags/fixed-base.gyp
diff --git a/test/win/linker_flags/fixed-base.gyp b/test/win/linker_flags/fixed-base.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..220b3fa9b90ece4614a5f53a63ed59f24c910555
--- /dev/null
+++ b/test/win/linker_flags/fixed-base.gyp
@@ -0,0 +1,44 @@
+# Copyright (c) 2012 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'test_fb_default',
+ 'product_name': 'test_fb_default',
+ 'type': 'executable',
+ 'msvs_settings': {
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_fb_no',
+ 'product_name': 'test_fb_no',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'FixedBaseAddress': '1',
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_fb_yes',
+ 'product_name': 'test_fb_yes',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'FixedBaseAddress': '2',
+ },
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ ]
+}
« no previous file with comments | « test/win/linker_flags/dep.gyp ('k') | test/win/linker_flags/hello.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698