| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 # ppapi_proxy is built, since that's where the ipc sources go in the | 159 # ppapi_proxy is built, since that's where the ipc sources go in the |
| 160 # component build. | 160 # component build. |
| 161 'target_name': 'ppapi_ipc', | 161 'target_name': 'ppapi_ipc', |
| 162 'type': 'none', | 162 'type': 'none', |
| 163 'dependencies': [ | 163 'dependencies': [ |
| 164 'ppapi_proxy', | 164 'ppapi_proxy', |
| 165 ], | 165 ], |
| 166 }, | 166 }, |
| 167 ], | 167 ], |
| 168 }], | 168 }], |
| 169 ['disable_nacl!=1' and 'OS=="win"', { | 169 ['disable_nacl!=1 and OS=="win"', { |
| 170 # In windows builds, we also want to define some targets to build in | 170 # In windows builds, we also want to define some targets to build in |
| 171 # 64-bit mode for use by nacl64.exe (the NaCl helper process for 64-bit | 171 # 64-bit mode for use by nacl64.exe (the NaCl helper process for 64-bit |
| 172 # Windows). | 172 # Windows). |
| 173 'targets': [ | 173 'targets': [ |
| 174 { | 174 { |
| 175 'target_name': 'ppapi_shared_win64', | 175 'target_name': 'ppapi_shared_win64', |
| 176 'type': '<(component)', | 176 'type': '<(component)', |
| 177 'variables': { | 177 'variables': { |
| 178 'nacl_win64_target': 1, | 178 'nacl_win64_target': 1, |
| 179 'ppapi_shared_target': 1, | 179 'ppapi_shared_target': 1, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 }, | 222 }, |
| 223 'configurations': { | 223 'configurations': { |
| 224 'Common_Base': { | 224 'Common_Base': { |
| 225 'msvs_target_platform': 'x64', | 225 'msvs_target_platform': 'x64', |
| 226 }, | 226 }, |
| 227 }, | 227 }, |
| 228 }], | 228 }], |
| 229 }], | 229 }], |
| 230 ], | 230 ], |
| 231 } | 231 } |
| OLD | NEW |