OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'includes': [ | 6 'includes': [ |
7 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
8 ], | 8 ], |
9 'target_defaults' : { | 9 'target_defaults' : { |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 'type': 'static_library', | 501 'type': 'static_library', |
502 'variables': { | 502 'variables': { |
503 'mojom_variant': 'blink', | 503 'mojom_variant': 'blink', |
504 'for_blink': 'true', | 504 'for_blink': 'true', |
505 }, | 505 }, |
506 'sources': [ | 506 'sources': [ |
507 'public/interfaces/bindings/tests/test_wtf_types.mojom', | 507 'public/interfaces/bindings/tests/test_wtf_types.mojom', |
508 ], | 508 ], |
509 'includes': [ 'mojom_bindings_generator.gypi' ], | 509 'includes': [ 'mojom_bindings_generator.gypi' ], |
510 }, | 510 }, |
| 511 { |
| 512 'target_name': 'mojo_public_test_variant', |
| 513 'type': 'static_library', |
| 514 'variables': { |
| 515 'mojom_variant': 'test_variant', |
| 516 }, |
| 517 'sources': [ |
| 518 'public/interfaces/bindings/tests/test_variant.mojom', |
| 519 ], |
| 520 'includes': [ 'mojom_bindings_generator.gypi' ], |
| 521 }, |
511 ], | 522 ], |
512 'conditions': [ | 523 'conditions': [ |
513 ['OS == "android"', { | 524 ['OS == "android"', { |
514 'targets': [ | 525 'targets': [ |
515 { | 526 { |
516 # GN version: //mojo/public/java:system | 527 # GN version: //mojo/public/java:system |
517 'target_name': 'mojo_public_java', | 528 'target_name': 'mojo_public_java', |
518 'type': 'none', | 529 'type': 'none', |
519 'variables': { | 530 'variables': { |
520 'chromium_code': 0, | 531 'chromium_code': 0, |
(...skipping 20 matching lines...) Expand all Loading... |
541 'mojo_interface_bindings_java_sources', | 552 'mojo_interface_bindings_java_sources', |
542 'mojo_public_java', | 553 'mojo_public_java', |
543 '<(DEPTH)/base/base.gyp:base_java', | 554 '<(DEPTH)/base/base.gyp:base_java', |
544 ], | 555 ], |
545 'includes': [ '../build/java.gypi' ], | 556 'includes': [ '../build/java.gypi' ], |
546 }, | 557 }, |
547 ], | 558 ], |
548 }], | 559 }], |
549 ], | 560 ], |
550 } | 561 } |
OLD | NEW |