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

Side by Side Diff: syzygy/syzygy.gypi

Issue 2194383007: Port some more code to x64 (Closed) Base URL: git@github.com:google/syzygy.git@master
Patch Set: Fix type mismatch Created 4 years, 4 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
OLDNEW
1 # Copyright 2012 Google Inc. All Rights Reserved. 1 # Copyright 2012 Google Inc. All Rights Reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ], 147 ],
148 }, 148 },
149 'Coverage': { 149 'Coverage': {
150 'inherit_from': ['Common_Base', 'x86_Base', 'Coverage_Base'], 150 'inherit_from': ['Common_Base', 'x86_Base', 'Coverage_Base'],
151 }, 151 },
152 'Debug': { 152 'Debug': {
153 'defines': [ 153 'defines': [
154 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Debug"', 154 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Debug"',
155 ], 155 ],
156 }, 156 },
157 'Debug_x64': {
158 'defines': [
159 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Debug_x64"',
160 ],
161 },
157 'conditions': [ 162 'conditions': [
158 ['OS=="win"', { 163 ['OS=="win"', {
159 'Coverage_x64': { 164 'Coverage_x64': {
160 'inherit_from': ['Common_Base', 'x64_Base', 'Coverage_Base'], 165 'inherit_from': ['Common_Base', 'x64_Base', 'Coverage_Base'],
161 }, 166 },
162 }], 167 }],
163 ], 168 ],
164 }, 169 },
165 }, 170 },
166 } 171 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698