OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 '<(PRODUCT_DIR)/lib.java/chromium_content_shell.jar', | 605 '<(PRODUCT_DIR)/lib.java/chromium_content_shell.jar', |
606 ], | 606 ], |
607 'dependencies': [ | 607 'dependencies': [ |
608 'content_java', | 608 'content_java', |
609 'content_shell_apk', | 609 'content_shell_apk', |
610 '../base/base.gyp:base_java', | 610 '../base/base.gyp:base_java', |
611 '../media/media.gyp:media_java', | 611 '../media/media.gyp:media_java', |
612 '../net/net.gyp:net_java', | 612 '../net/net.gyp:net_java', |
613 '../ui/ui.gyp:ui_java', | 613 '../ui/ui.gyp:ui_java', |
614 ], | 614 ], |
615 'export_dependent_settings': [ | 615 # This all_dependent_settings is used for java targets only. This will |
616 'content_java', | 616 # add the content_shell jar to the classpath of dependent java |
617 '../base/base.gyp:base_java', | 617 # targets. |
618 '../media/media.gyp:media_java', | 618 'all_dependent_settings': { |
619 '../net/net.gyp:net_java', | |
620 '../ui/ui.gyp:ui_java', | |
621 ], | |
622 'direct_dependent_settings': { | |
623 'variables': { | 619 'variables': { |
624 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_content_she
ll.jar'], | 620 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_content_she
ll.jar'], |
625 }, | 621 }, |
626 }, | 622 }, |
627 # Add an action with the appropriate output. This allows the generated | 623 # Add an action with the appropriate output. This allows the generated |
628 # buildfiles to determine which target the output corresponds to. | 624 # buildfiles to determine which target the output corresponds to. |
629 'actions': [ | 625 'actions': [ |
630 { | 626 { |
631 'action_name': 'fake_generate_jar', | 627 'action_name': 'fake_generate_jar', |
632 'inputs': [], | 628 'inputs': [], |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 '<@(_outputs)', | 664 '<@(_outputs)', |
669 ], | 665 ], |
670 }, | 666 }, |
671 ], | 667 ], |
672 'includes': [ '../build/java_apk.gypi' ], | 668 'includes': [ '../build/java_apk.gypi' ], |
673 }, | 669 }, |
674 ], | 670 ], |
675 }], # OS=="android" | 671 }], # OS=="android" |
676 ] | 672 ] |
677 } | 673 } |
OLD | NEW |