| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 '../ui/surface/surface.gyp:surface', | 118 '../ui/surface/surface.gyp:surface', |
| 119 'ppapi.gyp:ppapi_c', | 119 'ppapi.gyp:ppapi_c', |
| 120 'ppapi_shared', | 120 'ppapi_shared', |
| 121 'ppapi_ipc', | 121 'ppapi_ipc', |
| 122 ], | 122 ], |
| 123 'all_dependent_settings': { | 123 'all_dependent_settings': { |
| 124 'include_dirs': [ | 124 'include_dirs': [ |
| 125 '..', | 125 '..', |
| 126 ], | 126 ], |
| 127 }, | 127 }, |
| 128 # Disable c4267 warnings until we fix size_t to int truncations. |
| 129 'msvs_disabled_warnings': [ 4267, ], |
| 128 }, | 130 }, |
| 129 ], | 131 ], |
| 130 }, | 132 }, |
| 131 { # component != static_library | 133 { # component != static_library |
| 132 # In the component build, we'll just build ppapi_ipc in to ppapi_proxy. | 134 # In the component build, we'll just build ppapi_ipc in to ppapi_proxy. |
| 133 'targets': [ | 135 'targets': [ |
| 134 { | 136 { |
| 135 'target_name': 'ppapi_proxy', | 137 'target_name': 'ppapi_proxy', |
| 136 'type': 'shared_library', | 138 'type': 'shared_library', |
| 137 'variables': { | 139 'variables': { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 }, | 233 }, |
| 232 'configurations': { | 234 'configurations': { |
| 233 'Common_Base': { | 235 'Common_Base': { |
| 234 'msvs_target_platform': 'x64', | 236 'msvs_target_platform': 'x64', |
| 235 }, | 237 }, |
| 236 }, | 238 }, |
| 237 }], | 239 }], |
| 238 }], | 240 }], |
| 239 ], | 241 ], |
| 240 } | 242 } |
| OLD | NEW |