| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 'mojo_run_all_unittests', | 417 'mojo_run_all_unittests', |
| 418 'mojo_service_manager', | 418 'mojo_service_manager', |
| 419 'mojo_utility', | 419 'mojo_utility', |
| 420 ], | 420 ], |
| 421 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 421 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 422 'sources': [ | 422 'sources': [ |
| 423 'service_manager/service_manager_unittest.cc', | 423 'service_manager/service_manager_unittest.cc', |
| 424 'service_manager/test.mojom', | 424 'service_manager/test.mojom', |
| 425 ], | 425 ], |
| 426 }, | 426 }, |
| 427 { |
| 428 'target_name': 'mojo_js_bindings_lib', |
| 429 'type': 'static_library', |
| 430 'dependencies': [ |
| 431 '../base/base.gyp:base', |
| 432 '../gin/gin.gyp:gin', |
| 433 '../v8/tools/gyp/v8.gyp:v8', |
| 434 'mojo_common_lib', |
| 435 'mojo_system', |
| 436 ], |
| 437 'export_dependent_settings': [ |
| 438 '../base/base.gyp:base', |
| 439 '../gin/gin.gyp:gin', |
| 440 'mojo_common_lib', |
| 441 'mojo_system', |
| 442 ], |
| 443 'sources': [ |
| 444 'bindings/js/core.cc', |
| 445 'bindings/js/core.h', |
| 446 'bindings/js/handle.cc', |
| 447 'bindings/js/handle.h', |
| 448 'bindings/js/support.cc', |
| 449 'bindings/js/support.h', |
| 450 'bindings/js/waiting_callback.cc', |
| 451 'bindings/js/waiting_callback.h', |
| 452 ], |
| 453 }, |
| 427 ], | 454 ], |
| 428 'conditions': [ | 455 'conditions': [ |
| 429 ['OS=="android"', { | 456 ['OS=="android"', { |
| 430 'targets': [ | 457 'targets': [ |
| 431 { | 458 { |
| 432 'target_name': 'mojo_native_viewport_java', | 459 'target_name': 'mojo_native_viewport_java', |
| 433 'type': 'none', | 460 'type': 'none', |
| 434 'dependencies': [ | 461 'dependencies': [ |
| 435 '../base/base.gyp:base_java', | 462 '../base/base.gyp:base_java', |
| 436 ], | 463 ], |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 527 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 501 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 528 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 502 'native_lib_target': 'libmojo_shell', | 529 'native_lib_target': 'libmojo_shell', |
| 503 }, | 530 }, |
| 504 'includes': [ '../build/java_apk.gypi' ], | 531 'includes': [ '../build/java_apk.gypi' ], |
| 505 } | 532 } |
| 506 ], | 533 ], |
| 507 }], | 534 }], |
| 508 ], | 535 ], |
| 509 } | 536 } |
| OLD | NEW |