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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 'targets': [ | 731 'targets': [ |
732 { | 732 { |
733 'target_name': 'h264_parser_unittest', | 733 'target_name': 'h264_parser_unittest', |
734 'type': 'executable', | 734 'type': 'executable', |
735 'dependencies': [ | 735 'dependencies': [ |
736 'content_common', | 736 'content_common', |
737 '../base/base.gyp:base', | 737 '../base/base.gyp:base', |
738 '../testing/gtest.gyp:gtest', | 738 '../testing/gtest.gyp:gtest', |
739 ], | 739 ], |
740 'sources': [ | 740 'sources': [ |
| 741 'common/gpu/media/h264_bit_reader_unittest.cc', |
741 'common/gpu/media/h264_parser_unittest.cc', | 742 'common/gpu/media/h264_parser_unittest.cc', |
742 ], | 743 ], |
743 } | 744 } |
744 ], | 745 ], |
745 }], | 746 }], |
746 # Special target to wrap a gtest_target_type==shared_library | 747 # Special target to wrap a gtest_target_type==shared_library |
747 # content_unittests into an android apk for execution. | 748 # content_unittests into an android apk for execution. |
748 # See base.gyp for TODO(jrg)s about this strategy. | 749 # See base.gyp for TODO(jrg)s about this strategy. |
749 ['OS == "android" and gtest_target_type == "shared_library"', { | 750 ['OS == "android" and gtest_target_type == "shared_library"', { |
750 'targets': [ | 751 'targets': [ |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
824 '-buildfile', | 825 '-buildfile', |
825 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | 826 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', |
826 ] | 827 ] |
827 } | 828 } |
828 ], | 829 ], |
829 }, | 830 }, |
830 ], | 831 ], |
831 }], | 832 }], |
832 ], | 833 ], |
833 } | 834 } |
OLD | NEW |