OLD | NEW |
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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 'dependencies': [ | 429 'dependencies': [ |
430 '../gin/gin.gyp:gin', | 430 '../gin/gin.gyp:gin', |
431 'mojo_system', | 431 'mojo_system', |
432 ], | 432 ], |
433 'export_dependent_settings': [ | 433 'export_dependent_settings': [ |
434 '../gin/gin.gyp:gin', | 434 '../gin/gin.gyp:gin', |
435 ], | 435 ], |
436 'sources': [ | 436 'sources': [ |
437 'public/bindings/js/core.cc', | 437 'public/bindings/js/core.cc', |
438 'public/bindings/js/core.h', | 438 'public/bindings/js/core.h', |
| 439 'public/bindings/js/global.cc', |
| 440 'public/bindings/js/global.h', |
439 'public/bindings/js/handle.cc', | 441 'public/bindings/js/handle.cc', |
440 'public/bindings/js/handle.h', | 442 'public/bindings/js/handle.h', |
441 'public/bindings/js/mojo.cc', | |
442 'public/bindings/js/mojo.h', | |
443 'public/bindings/js/runner_delegate.cc', | 443 'public/bindings/js/runner_delegate.cc', |
444 'public/bindings/js/runner_delegate.h', | 444 'public/bindings/js/runner_delegate.h', |
445 ], | 445 ], |
446 }, | 446 }, |
447 { | 447 { |
448 'target_name': 'mojo_js_bindings_unittests', | 448 'target_name': 'mojo_js_bindings_unittests', |
449 'type': 'executable', | 449 'type': 'executable', |
450 'dependencies': [ | 450 'dependencies': [ |
451 '../base/base.gyp:run_all_unittests', | 451 '../base/base.gyp:run_all_unittests', |
452 '../gin/gin.gyp:gin_test', | 452 '../gin/gin.gyp:gin_test', |
453 'mojo_js_bindings', | 453 'mojo_js_bindings', |
454 ], | 454 ], |
455 'sources': [ | 455 'sources': [ |
456 'public/bindings/js/test/run_all_unittests.cc', | 456 'public/bindings/js/test/run_all_unittests.cc', |
457 'public/bindings/js/test/harness.cc', | 457 'public/bindings/js/test/run_js_tests.cc', |
458 ], | 458 ], |
459 }, | 459 }, |
460 { | 460 { |
461 'target_name': 'native_viewport', | 461 'target_name': 'native_viewport', |
462 'type': 'static_library', | 462 'type': 'static_library', |
463 'dependencies': [ | 463 'dependencies': [ |
464 '../base/base.gyp:base', | 464 '../base/base.gyp:base', |
465 '../gpu/gpu.gyp:command_buffer_service', | 465 '../gpu/gpu.gyp:command_buffer_service', |
466 '../gpu/gpu.gyp:gles2_implementation', | 466 '../gpu/gpu.gyp:gles2_implementation', |
467 '../ui/events/events.gyp:events', | 467 '../ui/events/events.gyp:events', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 569 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
570 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 570 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
571 'native_lib_target': 'libmojo_shell', | 571 'native_lib_target': 'libmojo_shell', |
572 }, | 572 }, |
573 'includes': [ '../build/java_apk.gypi' ], | 573 'includes': [ '../build/java_apk.gypi' ], |
574 } | 574 } |
575 ], | 575 ], |
576 }], | 576 }], |
577 ], | 577 ], |
578 } | 578 } |
OLD | NEW |