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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 598183002: Pepper: PPB_Mojo prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/ppapi_shared.gypi ('k') | ppapi/proxy/interface_list.cc » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ppapi_tests', 8 'target_name': 'ppapi_tests',
9 'type': 'loadable_module', 9 'type': 'loadable_module',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'OTHER_LDFLAGS': [ 225 'OTHER_LDFLAGS': [
226 # Not to strip important symbols by -Wl,-dead_strip. 226 # Not to strip important symbols by -Wl,-dead_strip.
227 '-Wl,-exported_symbol,_PPP_GetInterface', 227 '-Wl,-exported_symbol,_PPP_GetInterface',
228 '-Wl,-exported_symbol,_PPP_InitializeModule', 228 '-Wl,-exported_symbol,_PPP_InitializeModule',
229 '-Wl,-exported_symbol,_PPP_ShutdownModule' 229 '-Wl,-exported_symbol,_PPP_ShutdownModule'
230 ]}, 230 ]},
231 }], 231 }],
232 ], 232 ],
233 }, 233 },
234 }, 234 },
235
236 {
237 'target_name': 'ppapi_example_mojo',
238 'dependencies': [
239 '../mojo/mojo.gyp:mojo_echo_service_bindings',
240 '../mojo/mojo_base.gyp:mojo_application_standalone',
241 '../mojo/mojo_base.gyp:mojo_environment_standalone',
242 '../mojo/mojo_base.gyp:mojo_utility',
243 'ppapi_example_skeleton',
244 'ppapi.gyp:ppapi_cpp',
245 ],
246 'sources': [
247 'examples/mojo/mojo.cc',
248 ],
249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
250 'msvs_disabled_warnings': [ 4267, ],
251 },
252
235 { 253 {
236 'target_name': 'ppapi_example_mouse_cursor', 254 'target_name': 'ppapi_example_mouse_cursor',
237 'dependencies': [ 255 'dependencies': [
238 'ppapi_example_skeleton', 256 'ppapi_example_skeleton',
239 'ppapi.gyp:ppapi_cpp', 257 'ppapi.gyp:ppapi_cpp',
240 ], 258 ],
241 'sources': [ 259 'sources': [
242 'examples/mouse_cursor/mouse_cursor.cc', 260 'examples/mouse_cursor/mouse_cursor.cc',
243 ], 261 ],
244 }, 262 },
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 'lib/gl/include', 601 'lib/gl/include',
584 ], 602 ],
585 'sources': [ 603 'sources': [
586 'examples/compositor/compositor.cc', 604 'examples/compositor/compositor.cc',
587 'examples/compositor/spinning_cube.cc', 605 'examples/compositor/spinning_cube.cc',
588 'examples/compositor/spinning_cube.h', 606 'examples/compositor/spinning_cube.h',
589 ], 607 ],
590 }, 608 },
591 ], 609 ],
592 } 610 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared.gypi ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698