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

Side by Side Diff: mojo/mojo_services.gypi

Issue 423963004: First cut at "content handling" support in Mojo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blech Created 6 years, 4 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 # GN version: //mojo/services/dbus_echo:bindings 8 # GN version: //mojo/services/dbus_echo:bindings
9 'target_name': 'mojo_echo_bindings', 9 'target_name': 'mojo_echo_bindings',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 358 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
359 'export_dependent_settings': [ 359 'export_dependent_settings': [
360 'mojo_base.gyp:mojo_cpp_bindings', 360 'mojo_base.gyp:mojo_cpp_bindings',
361 ], 361 ],
362 'dependencies': [ 362 'dependencies': [
363 'mojo_base.gyp:mojo_cpp_bindings', 363 'mojo_base.gyp:mojo_cpp_bindings',
364 'mojo_network_bindings', 364 'mojo_network_bindings',
365 ], 365 ],
366 }, 366 },
367 { 367 {
368 'target_name': 'mojo_content_handler_bindings',
369 'type': 'static_library',
370 'sources': [
371 'services/public/interfaces/content_handler/content_handler.mojom',
372 ],
373 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
374 'export_dependent_settings': [
375 'mojo_base.gyp:mojo_cpp_bindings',
376 ],
377 'dependencies': [
378 'mojo_base.gyp:mojo_cpp_bindings',
379 'mojo_network_bindings',
380 ],
381 },
382 {
368 # GN version: //mojo/services/public/interfaces/network 383 # GN version: //mojo/services/public/interfaces/network
369 'target_name': 'mojo_network_bindings', 384 'target_name': 'mojo_network_bindings',
370 'type': 'static_library', 385 'type': 'static_library',
371 'sources': [ 386 'sources': [
372 'services/public/interfaces/network/cookie_store.mojom', 387 'services/public/interfaces/network/cookie_store.mojom',
373 'services/public/interfaces/network/network_error.mojom', 388 'services/public/interfaces/network/network_error.mojom',
374 'services/public/interfaces/network/network_service.mojom', 389 'services/public/interfaces/network/network_service.mojom',
375 'services/public/interfaces/network/url_loader.mojom', 390 'services/public/interfaces/network/url_loader.mojom',
376 ], 391 ],
377 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 392 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 'mojo_echo_bindings', 923 'mojo_echo_bindings',
909 ], 924 ],
910 'sources': [ 925 'sources': [
911 'services/dbus_echo/dbus_echo_service.cc', 926 'services/dbus_echo/dbus_echo_service.cc',
912 ], 927 ],
913 }, 928 },
914 ], 929 ],
915 }], 930 }],
916 ], 931 ],
917 } 932 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698