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

Side by Side Diff: mojo/mojo_services.gypi

Issue 361123002: Mojo surfaces service and example app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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': 'mojo_echo_bindings', 8 'target_name': 'mojo_echo_bindings',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'dependencies': [ 125 'dependencies': [
126 '../base/base.gyp:base', 126 '../base/base.gyp:base',
127 '../base/base.gyp:test_support_base', 127 '../base/base.gyp:test_support_base',
128 '../cc/cc.gyp:cc', 128 '../cc/cc.gyp:cc',
129 '../cc/cc.gyp:cc_surfaces', 129 '../cc/cc.gyp:cc_surfaces',
130 '../gpu/gpu.gyp:gpu', 130 '../gpu/gpu.gyp:gpu',
131 '../skia/skia.gyp:skia', 131 '../skia/skia.gyp:skia',
132 '../testing/gtest.gyp:gtest', 132 '../testing/gtest.gyp:gtest',
133 '../ui/gfx/gfx.gyp:gfx', 133 '../ui/gfx/gfx.gyp:gfx',
134 '../ui/gfx/gfx.gyp:gfx_geometry', 134 '../ui/gfx/gfx.gyp:gfx_geometry',
135 'mojo_environment_chromium',
135 'mojo_geometry_lib', 136 'mojo_geometry_lib',
136 'mojo_run_all_unittests', 137 'mojo_run_all_unittests',
137 'mojo_surfaces_bindings', 138 'mojo_surfaces_bindings',
138 'mojo_surfaces_lib', 139 'mojo_surfaces_lib',
139 ], 140 ],
140 'sources': [ 141 'sources': [
141 'services/public/cpp/surfaces/tests/surface_unittest.cc', 142 'services/public/cpp/surfaces/tests/surface_unittest.cc',
142 ], 143 ],
143 }, 144 },
144 { 145 {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'services/network/main.cc', 295 'services/network/main.cc',
295 'services/network/network_context.cc', 296 'services/network/network_context.cc',
296 'services/network/network_context.h', 297 'services/network/network_context.h',
297 'services/network/network_service_impl.cc', 298 'services/network/network_service_impl.cc',
298 'services/network/network_service_impl.h', 299 'services/network/network_service_impl.h',
299 'services/network/url_loader_impl.cc', 300 'services/network/url_loader_impl.cc',
300 'services/network/url_loader_impl.h', 301 'services/network/url_loader_impl.h',
301 ], 302 ],
302 }, 303 },
303 { 304 {
305 'target_name': 'mojo_surfaces_service',
306 'type': 'shared_library',
307 'dependencies': [
308 '../base/base.gyp:base',
309 '../cc/cc.gyp:cc',
310 '../cc/cc.gyp:cc_surfaces',
311 '../ui/gfx/gfx.gyp:gfx_geometry',
312 'mojo_application',
313 'mojo_cc_support',
314 'mojo_environment_chromium',
315 'mojo_geometry_bindings',
316 'mojo_geometry_lib',
317 'mojo_surfaces_bindings',
318 'mojo_surfaces_lib',
319 ],
320 'sources': [
321 'services/surfaces/surfaces_impl.cc',
322 'services/surfaces/surfaces_impl.h',
323 'services/surfaces/surfaces_service_application.cc',
324 'services/surfaces/surfaces_service_application.h',
325 'public/cpp/application/lib/mojo_main_chromium.cc',
326 ],
327 },
328 {
304 'target_name': 'mojo_view_manager_common', 329 'target_name': 'mojo_view_manager_common',
305 'type': 'static_library', 330 'type': 'static_library',
306 'sources': [ 331 'sources': [
307 'services/public/cpp/view_manager/types.h', 332 'services/public/cpp/view_manager/types.h',
308 ], 333 ],
309 }, 334 },
310 { 335 {
311 'target_name': 'mojo_launcher_bindings', 336 'target_name': 'mojo_launcher_bindings',
312 'type': 'static_library', 337 'type': 'static_library',
313 'sources': [ 338 'sources': [
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 'services/public/interfaces/surfaces/surface_id.mojom', 460 'services/public/interfaces/surfaces/surface_id.mojom',
436 'services/public/interfaces/surfaces/quads.mojom', 461 'services/public/interfaces/surfaces/quads.mojom',
437 ], 462 ],
438 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 463 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
439 'export_dependent_settings': [ 464 'export_dependent_settings': [
440 'mojo_cpp_bindings', 465 'mojo_cpp_bindings',
441 ], 466 ],
442 'dependencies': [ 467 'dependencies': [
443 'mojo_cpp_bindings', 468 'mojo_cpp_bindings',
444 'mojo_geometry_bindings', 469 'mojo_geometry_bindings',
470 'mojo_native_viewport_bindings',
445 ], 471 ],
446 }, 472 },
447 { 473 {
448 'target_name': 'mojo_test_service_bindings', 474 'target_name': 'mojo_test_service_bindings',
449 'type': 'static_library', 475 'type': 'static_library',
450 'sources': [ 476 'sources': [
451 # TODO(tim): Move to services/public/interfaces? 477 # TODO(tim): Move to services/public/interfaces?
452 'services/test_service/test_service.mojom', 478 'services/test_service/test_service.mojom',
453 'services/test_service/test_request_tracker.mojom', 479 'services/test_service/test_request_tracker.mojom',
454 ], 480 ],
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 'mojo_system_impl', 705 'mojo_system_impl',
680 ], 706 ],
681 'sources': [ 707 'sources': [
682 'services/dbus_echo/dbus_echo_service.cc', 708 'services/dbus_echo/dbus_echo_service.cc',
683 ], 709 ],
684 }, 710 },
685 ], 711 ],
686 }], 712 }],
687 ], 713 ],
688 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698