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

Side by Side Diff: ppapi/ppapi_internal.gyp

Issue 2104403003: pepper: parse context creation attrib list on the plugin side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gpu_pref_size_in_attrs
Patch Set: rebase Created 4 years, 5 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
« no previous file with comments | « ppapi/native_client/native_client.gyp ('k') | ppapi/proxy/ppapi_messages.h » ('j') | 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 # GN version: //ppapi/proxy 100 # GN version: //ppapi/proxy
101 'target_name': 'ppapi_proxy', 101 'target_name': 'ppapi_proxy',
102 'type': 'static_library', 102 'type': 'static_library',
103 'variables': { 103 'variables': {
104 'ppapi_proxy_target': 1, 104 'ppapi_proxy_target': 1,
105 }, 105 },
106 'dependencies': [ 106 'dependencies': [
107 '../base/base.gyp:base', 107 '../base/base.gyp:base',
108 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 108 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
109 '../gin/gin.gyp:gin', 109 '../gin/gin.gyp:gin',
110 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
110 '../gpu/gpu.gyp:gles2_implementation', 111 '../gpu/gpu.gyp:gles2_implementation',
111 '../gpu/gpu.gyp:command_buffer_traits', 112 '../gpu/gpu.gyp:command_buffer_traits',
112 '../media/media.gyp:shared_memory_support', 113 '../media/media.gyp:shared_memory_support',
113 '../ipc/ipc.gyp:ipc', 114 '../ipc/ipc.gyp:ipc',
114 '../mojo/mojo_edk.gyp:mojo_system_impl', 115 '../mojo/mojo_edk.gyp:mojo_system_impl',
115 '../skia/skia.gyp:skia', 116 '../skia/skia.gyp:skia',
116 '../third_party/icu/icu.gyp:icuuc', 117 '../third_party/icu/icu.gyp:icuuc',
117 '../third_party/icu/icu.gyp:icui18n', 118 '../third_party/icu/icu.gyp:icui18n',
118 '../ui/surface/surface.gyp:surface', 119 '../ui/surface/surface.gyp:surface',
120 '../ui/gfx/gfx.gyp:gfx_geometry',
119 'ppapi.gyp:ppapi_c', 121 'ppapi.gyp:ppapi_c',
120 'ppapi_shared', 122 'ppapi_shared',
121 'ppapi_ipc', 123 'ppapi_ipc',
122 ], 124 ],
123 'all_dependent_settings': { 125 'all_dependent_settings': {
124 'include_dirs': [ 126 'include_dirs': [
125 '..', 127 '..',
126 ], 128 ],
127 }, 129 },
128 'conditions': [ 130 'conditions': [
(...skipping 20 matching lines...) Expand all
149 'variables': { 151 'variables': {
150 # Setting both variables means we pull in the sources from both 152 # Setting both variables means we pull in the sources from both
151 # ppapi_ipc.gypi and ppapi_proxy.gypi. 153 # ppapi_ipc.gypi and ppapi_proxy.gypi.
152 'ppapi_ipc_target': 1, 154 'ppapi_ipc_target': 1,
153 'ppapi_proxy_target': 1, 155 'ppapi_proxy_target': 1,
154 }, 156 },
155 'dependencies': [ 157 'dependencies': [
156 '../base/base.gyp:base', 158 '../base/base.gyp:base',
157 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 159 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
158 '../gin/gin.gyp:gin', 160 '../gin/gin.gyp:gin',
161 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
159 '../gpu/gpu.gyp:gles2_implementation', 162 '../gpu/gpu.gyp:gles2_implementation',
160 '../gpu/gpu.gyp:command_buffer_traits', 163 '../gpu/gpu.gyp:command_buffer_traits',
161 '../media/media.gyp:shared_memory_support', 164 '../media/media.gyp:shared_memory_support',
162 '../mojo/mojo_edk.gyp:mojo_system_impl', 165 '../mojo/mojo_edk.gyp:mojo_system_impl',
163 '../ipc/ipc.gyp:ipc', 166 '../ipc/ipc.gyp:ipc',
164 '../skia/skia.gyp:skia', 167 '../skia/skia.gyp:skia',
165 '../third_party/icu/icu.gyp:icuuc', 168 '../third_party/icu/icu.gyp:icuuc',
166 '../third_party/icu/icu.gyp:icui18n', 169 '../third_party/icu/icu.gyp:icui18n',
170 '../ui/gfx/gfx.gyp:gfx_geometry',
167 '../ui/surface/surface.gyp:surface', 171 '../ui/surface/surface.gyp:surface',
168 'ppapi.gyp:ppapi_c', 172 'ppapi.gyp:ppapi_c',
169 'ppapi_shared', 173 'ppapi_shared',
170 ], 174 ],
171 'all_dependent_settings': { 175 'all_dependent_settings': {
172 'include_dirs': [ 176 'include_dirs': [
173 '..', 177 '..',
174 ], 178 ],
175 }, 179 },
176 'conditions': [ 180 'conditions': [
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 }, 263 },
260 'configurations': { 264 'configurations': {
261 'Common_Base': { 265 'Common_Base': {
262 'msvs_target_platform': 'x64', 266 'msvs_target_platform': 'x64',
263 }, 267 },
264 }, 268 },
265 }], 269 }],
266 }], 270 }],
267 ], 271 ],
268 } 272 }
OLDNEW
« no previous file with comments | « ppapi/native_client/native_client.gyp ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698