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

Side by Side Diff: mojo/mojo.gyp

Issue 62333018: Implement Asynchronous Module Definition API for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar testing 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 'dependencies': [ 392 'dependencies': [
393 '../gin/gin.gyp:gin', 393 '../gin/gin.gyp:gin',
394 'mojo_system', 394 'mojo_system',
395 ], 395 ],
396 'export_dependent_settings': [ 396 'export_dependent_settings': [
397 '../gin/gin.gyp:gin', 397 '../gin/gin.gyp:gin',
398 ], 398 ],
399 'sources': [ 399 'sources': [
400 'public/bindings/js/core.cc', 400 'public/bindings/js/core.cc',
401 'public/bindings/js/core.h', 401 'public/bindings/js/core.h',
402 'public/bindings/js/global.cc',
403 'public/bindings/js/global.h',
402 'public/bindings/js/handle.cc', 404 'public/bindings/js/handle.cc',
403 'public/bindings/js/handle.h', 405 'public/bindings/js/handle.h',
404 'public/bindings/js/mojo.cc',
405 'public/bindings/js/mojo.h',
406 'public/bindings/js/runner_delegate.cc', 406 'public/bindings/js/runner_delegate.cc',
407 'public/bindings/js/runner_delegate.h', 407 'public/bindings/js/runner_delegate.h',
408 ], 408 ],
409 }, 409 },
410 { 410 {
411 'target_name': 'mojo_js_bindings_unittests', 411 'target_name': 'mojo_js_bindings_unittests',
412 'type': 'executable', 412 'type': 'executable',
413 'dependencies': [ 413 'dependencies': [
414 '../base/base.gyp:run_all_unittests', 414 '../base/base.gyp:run_all_unittests',
415 '../gin/gin.gyp:gin_test', 415 '../gin/gin.gyp:gin_test',
416 'mojo_js_bindings', 416 'mojo_js_bindings',
417 ], 417 ],
418 'sources': [ 418 'sources': [
419 'public/bindings/js/test/run_all_unittests.cc', 419 'public/bindings/js/test/run_all_unittests.cc',
420 'public/bindings/js/test/harness.cc', 420 'public/bindings/js/test/run_js_tests.cc',
421 ], 421 ],
422 }, 422 },
423 { 423 {
424 'target_name': 'native_viewport', 424 'target_name': 'native_viewport',
425 'type': 'static_library', 425 'type': 'static_library',
426 'dependencies': [ 426 'dependencies': [
427 '../base/base.gyp:base', 427 '../base/base.gyp:base',
428 '../gpu/gpu.gyp:command_buffer_service', 428 '../gpu/gpu.gyp:command_buffer_service',
429 '../gpu/gpu.gyp:gles2_implementation', 429 '../gpu/gpu.gyp:gles2_implementation',
430 '../ui/events/events.gyp:events', 430 '../ui/events/events.gyp:events',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 532 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
533 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 533 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
534 'native_lib_target': 'libmojo_shell', 534 'native_lib_target': 'libmojo_shell',
535 }, 535 },
536 'includes': [ '../build/java_apk.gypi' ], 536 'includes': [ '../build/java_apk.gypi' ],
537 } 537 }
538 ], 538 ],
539 }], 539 }],
540 ], 540 ],
541 } 541 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698