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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 298023004: [PPAPI] Compositor API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor_api_def_new
Patch Set: Use a clip parent for clip_rect Created 6 years, 6 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
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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 ], 563 ],
564 'include_dirs': [ 564 'include_dirs': [
565 'lib/gl/include', 565 'lib/gl/include',
566 ], 566 ],
567 'sources': [ 567 'sources': [
568 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', 568 'examples/gles2_spinning_cube/gles2_spinning_cube.cc',
569 'examples/gles2_spinning_cube/spinning_cube.cc', 569 'examples/gles2_spinning_cube/spinning_cube.cc',
570 'examples/gles2_spinning_cube/spinning_cube.h', 570 'examples/gles2_spinning_cube/spinning_cube.h',
571 ], 571 ],
572 }, 572 },
573 {
574 'target_name': 'ppapi_example_compositor',
575 'dependencies': [
576 'ppapi_example_skeleton',
577 'ppapi.gyp:ppapi_cpp',
578 'ppapi.gyp:ppapi_gles2',
579 ],
580 'include_dirs': [
581 'lib/gl/include',
582 ],
583 'sources': [
584 'examples/compositor/compositor.cc',
585 'examples/compositor/spinning_cube.cc',
586 'examples/compositor/spinning_cube.h',
587 ],
588 },
573 ], 589 ],
574 } 590 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698