| OLD | NEW |
| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': { | 157 'Debug_x64': { |
| 158 'defines': [ | 158 'defines': [ |
| 159 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Debug_x64"', | 159 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Debug_x64"', |
| 160 ], | 160 ], |
| 161 }, | 161 }, |
| 162 'Release_x64': { |
| 163 'defines': [ |
| 164 'BUILD_OUTPUT_DIR="<(output_dir_prefix)/Release_x64"', |
| 165 ], |
| 166 }, |
| 162 'conditions': [ | 167 'conditions': [ |
| 163 ['OS=="win"', { | 168 ['OS=="win"', { |
| 164 'Coverage_x64': { | 169 'Coverage_x64': { |
| 165 'inherit_from': ['Common_Base', 'x64_Base', 'Coverage_Base'], | 170 'inherit_from': ['Common_Base', 'x64_Base', 'Coverage_Base'], |
| 166 }, | 171 }, |
| 167 }], | 172 }], |
| 168 ], | 173 ], |
| 169 }, | 174 }, |
| 170 }, | 175 }, |
| 171 } | 176 } |
| OLD | NEW |