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

Side by Side Diff: trunk/src/mojo/mojo.gyp

Issue 62103015: Revert 234975 "Work in progress for end-to-end bindings" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'target_name': 'mojo_shell_lib', 226 'target_name': 'mojo_shell_lib',
227 'type': 'static_library', 227 'type': 'static_library',
228 'dependencies': [ 228 'dependencies': [
229 '../base/base.gyp:base', 229 '../base/base.gyp:base',
230 '../net/net.gyp:net', 230 '../net/net.gyp:net',
231 '../url/url.gyp:url_lib', 231 '../url/url.gyp:url_lib',
232 'mojo_bindings', 232 'mojo_bindings',
233 'mojo_system', 233 'mojo_system',
234 'mojo_utility', 234 'mojo_utility',
235 'native_viewport', 235 'native_viewport',
236 'hello_world_service_impl',
237 ], 236 ],
238 'sources': [ 237 'sources': [
239 'shell/app_container.cc', 238 'shell/app_container.cc',
240 'shell/app_container.h', 239 'shell/app_container.h',
241 'shell/context.cc', 240 'shell/context.cc',
242 'shell/context.h', 241 'shell/context.h',
243 'shell/loader.cc', 242 'shell/loader.cc',
244 'shell/loader.h', 243 'shell/loader.h',
245 'shell/network_delegate.cc', 244 'shell/network_delegate.cc',
246 'shell/network_delegate.h', 245 'shell/network_delegate.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 ], 308 ],
310 'sources': [ 309 'sources': [
311 'apps/js/main.cc', 310 'apps/js/main.cc',
312 ], 311 ],
313 }, 312 },
314 { 313 {
315 'target_name': 'sample_app', 314 'target_name': 'sample_app',
316 'type': 'shared_library', 315 'type': 'shared_library',
317 'dependencies': [ 316 'dependencies': [
318 '../ui/gl/gl.gyp:gl', 317 '../ui/gl/gl.gyp:gl',
319 'hello_world_service',
320 'mojo_common_lib',
321 'mojo_system', 318 'mojo_system',
322 ], 319 ],
323 'sources': [ 320 'sources': [
324 'examples/sample_app/hello_world_client_impl.cc',
325 'examples/sample_app/hello_world_client_impl.h',
326 'examples/sample_app/sample_app.cc', 321 'examples/sample_app/sample_app.cc',
327 'examples/sample_app/spinning_cube.cc', 322 'examples/sample_app/spinning_cube.cc',
328 'examples/sample_app/spinning_cube.h', 323 'examples/sample_app/spinning_cube.h',
329 ], 324 ],
330 }, 325 },
331 { 326 {
332 'target_name': 'hello_world_service',
333 'type': 'static_library',
334 'dependencies': [
335 'mojo_bindings',
336 'mojo_system',
337 ],
338 'export_dependent_settings': [
339 'mojo_bindings',
340 'mojo_system',
341 ],
342 'sources': [
343 'examples/hello_world_service/hello_world_service.mojom',
344 ],
345 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
346 },
347 {
348 'target_name': 'hello_world_service_impl',
349 'type': 'static_library',
350 'sources': [
351 'examples/hello_world_service/hello_world_service_impl.cc',
352 'examples/hello_world_service/hello_world_service_impl.h',
353 ],
354 'export_dependent_settings': [
355 'hello_world_service',
356 ],
357 'dependencies': [
358 '../base/base.gyp:base',
359 'hello_world_service',
360 ],
361 },
362 {
363 'target_name': 'mojo_bindings', 327 'target_name': 'mojo_bindings',
364 'type': 'static_library', 328 'type': 'static_library',
365 'include_dirs': [ 329 'include_dirs': [
366 '..' 330 '..'
367 ], 331 ],
368 'sources': [ 332 'sources': [
369 'public/bindings/lib/bindings.h', 333 'public/bindings/lib/bindings.h',
370 'public/bindings/lib/bindings_internal.h', 334 'public/bindings/lib/bindings_internal.h',
371 'public/bindings/lib/bindings_serialization.cc', 335 'public/bindings/lib/bindings_serialization.cc',
372 'public/bindings/lib/bindings_serialization.h', 336 'public/bindings/lib/bindings_serialization.h',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 532 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
569 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 533 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
570 'native_lib_target': 'libmojo_shell', 534 'native_lib_target': 'libmojo_shell',
571 }, 535 },
572 'includes': [ '../build/java_apk.gypi' ], 536 'includes': [ '../build/java_apk.gypi' ],
573 } 537 }
574 ], 538 ],
575 }], 539 }],
576 ], 540 ],
577 } 541 }
OLDNEW
« no previous file with comments | « trunk/src/mojo/examples/sample_app/sample_app.cc ('k') | trunk/src/mojo/public/bindings/mojom_bindings_generator.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698