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

Side by Side Diff: mojo/mojo.gyp

Issue 640023004: cc: Make OutputSurface::SwapBuffers pure virtual (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@latinfo
Patch Set: and rebase 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 14 matching lines...) Expand all
25 'target_name': 'mojo', 25 'target_name': 'mojo',
26 'type': 'none', 26 'type': 'none',
27 'dependencies': [ 27 'dependencies': [
28 'edk/mojo_edk.gyp:mojo_edk', 28 'edk/mojo_edk.gyp:mojo_edk',
29 'mojo_application_manager', 29 'mojo_application_manager',
30 'mojo_application_manager_unittests', 30 'mojo_application_manager_unittests',
31 'mojo_apps_js_unittests', 31 'mojo_apps_js_unittests',
32 'mojo_base.gyp:mojo_base', 32 'mojo_base.gyp:mojo_base',
33 'mojo_clipboard', 33 'mojo_clipboard',
34 'mojo_clipboard_unittests', 34 'mojo_clipboard_unittests',
35 'mojo_compositor_app',
36 'mojo_content_handler_demo', 35 'mojo_content_handler_demo',
37 'mojo_echo_client', 36 'mojo_echo_client',
38 'mojo_echo_service', 37 'mojo_echo_service',
39 'mojo_example_apptests', 38 'mojo_example_apptests',
40 'mojo_example_service', 39 'mojo_example_service',
41 'mojo_geometry_lib', 40 'mojo_geometry_lib',
42 'mojo_html_viewer', 41 'mojo_html_viewer',
43 'mojo_input_events_lib', 42 'mojo_input_events_lib',
44 'mojo_js_content_handler', 43 'mojo_js_content_handler',
45 'mojo_js_standalone', 44 'mojo_js_standalone',
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ], 365 ],
367 'includes': [ 366 'includes': [
368 'mojo_public_gles2_for_loadable_module.gypi', 367 'mojo_public_gles2_for_loadable_module.gypi',
369 ], 368 ],
370 'export_dependent_settings': [ 369 'export_dependent_settings': [
371 'services/public/mojo_services_public.gyp:mojo_surfaces_bindings', 370 'services/public/mojo_services_public.gyp:mojo_surfaces_bindings',
372 ], 371 ],
373 'sources': [ 372 'sources': [
374 'cc/context_provider_mojo.cc', 373 'cc/context_provider_mojo.cc',
375 'cc/context_provider_mojo.h', 374 'cc/context_provider_mojo.h',
375 'cc/direct_output_surface.cc',
376 'cc/direct_output_surface.h',
376 'cc/output_surface_mojo.cc', 377 'cc/output_surface_mojo.cc',
377 'cc/output_surface_mojo.h', 378 'cc/output_surface_mojo.h',
378 ], 379 ],
379 }, 380 },
380 { 381 {
381 # GN version: //mojo/gles2 382 # GN version: //mojo/gles2
382 'target_name': 'mojo_gles2_impl', 383 'target_name': 'mojo_gles2_impl',
383 'type': '<(component)', 384 'type': '<(component)',
384 'dependencies': [ 385 'dependencies': [
385 '../base/base.gyp:base', 386 '../base/base.gyp:base',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 '../build/isolate.gypi', 771 '../build/isolate.gypi',
771 ], 772 ],
772 'sources': [ 773 'sources': [
773 'mojo_js_unittests.isolate', 774 'mojo_js_unittests.isolate',
774 ], 775 ],
775 }, 776 },
776 ], 777 ],
777 }], 778 }],
778 ], 779 ],
779 } 780 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698