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

Side by Side Diff: ppapi/ppapi_internal.gyp

Issue 12258010: Make ppapi static and release builds work on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698