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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 'sources/': [ | 648 'sources/': [ |
649 # Pull in specific Mac files for iOS (which have been filtered out | 649 # Pull in specific Mac files for iOS (which have been filtered out |
650 # by file name rules). | 650 # by file name rules). |
651 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], | 651 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], |
652 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], | 652 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], |
653 ], | 653 ], |
654 }], | 654 }], |
655 ], # target_conditions | 655 ], # target_conditions |
656 }, | 656 }, |
657 { | 657 { |
658 'target_name': 'check_example', | |
659 'type': 'executable', | |
660 'sources': [ | |
661 'check_example.cc', | |
662 ], | |
663 'dependencies': [ | |
664 'base', | |
665 ], | |
666 }, | |
667 { | |
668 'target_name': 'test_support_base', | 658 'target_name': 'test_support_base', |
669 'type': 'static_library', | 659 'type': 'static_library', |
670 'dependencies': [ | 660 'dependencies': [ |
671 'base', | 661 'base', |
672 'base_static', | 662 'base_static', |
673 'base_i18n', | 663 'base_i18n', |
674 '../testing/gmock.gyp:gmock', | 664 '../testing/gmock.gyp:gmock', |
675 '../testing/gtest.gyp:gtest', | 665 '../testing/gtest.gyp:gtest', |
676 ], | 666 ], |
677 'export_dependent_settings': [ | 667 'export_dependent_settings': [ |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 # base/test/perf_test_suite.h | 788 # base/test/perf_test_suite.h |
799 # base/test/test_suite.h | 789 # base/test/test_suite.h |
800 # gtk/gtk.h | 790 # gtk/gtk.h |
801 '../build/linux/system.gyp:gtk', | 791 '../build/linux/system.gyp:gtk', |
802 ], | 792 ], |
803 }], | 793 }], |
804 ], | 794 ], |
805 }, | 795 }, |
806 ], | 796 ], |
807 'conditions': [ | 797 'conditions': [ |
| 798 ['OS!="ios"', { |
| 799 'targets': [ |
| 800 { |
| 801 'target_name': 'check_example', |
| 802 'type': 'executable', |
| 803 'sources': [ |
| 804 'check_example.cc', |
| 805 ], |
| 806 'dependencies': [ |
| 807 'base', |
| 808 ], |
| 809 }, |
| 810 ], |
| 811 }], |
808 ['OS == "win"', { | 812 ['OS == "win"', { |
809 'targets': [ | 813 'targets': [ |
810 { | 814 { |
811 'target_name': 'base_nacl_win64', | 815 'target_name': 'base_nacl_win64', |
812 'type': '<(component)', | 816 'type': '<(component)', |
813 'variables': { | 817 'variables': { |
814 'base_target': 1, | 818 'base_target': 1, |
815 }, | 819 }, |
816 'dependencies': [ | 820 'dependencies': [ |
817 'base_static_win64', | 821 'base_static_win64', |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1067 'test_suite_name': 'base_unittests', | 1071 'test_suite_name': 'base_unittests', |
1068 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', | 1072 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit
tests<(SHARED_LIB_SUFFIX)', |
1069 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 1073 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
1070 }, | 1074 }, |
1071 'includes': [ '../build/apk_test.gypi' ], | 1075 'includes': [ '../build/apk_test.gypi' ], |
1072 }, | 1076 }, |
1073 ], | 1077 ], |
1074 }], | 1078 }], |
1075 ], | 1079 ], |
1076 } | 1080 } |
OLD | NEW |