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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
779 }], | 779 }], |
780 ['target_arch!="arm"', { | 780 ['target_arch!="arm"', { |
781 'dependencies': [ | 781 'dependencies': [ |
782 # Runtime dependencies | 782 # Runtime dependencies |
783 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 783 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
784 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', | 784 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', |
785 ], | 785 ], |
786 }], | 786 }], |
787 ], | 787 ], |
788 }, | 788 }, |
789 { | |
790 'target_name': 'content_layouttest_support', | |
jam
2012/11/09 02:00:19
why is this a separate target instead of putting i
jam
2012/11/09 02:05:58
(and to be clear, I think it should be in test_sup
jochen (gone - plz use gerrit)
2012/11/09 09:41:00
Done
I thought it would be nicer not to depend on
| |
791 'type': 'static_library', | |
792 'variables': { | |
793 'chromium_code': 1, | |
794 }, | |
795 'dependencies': [ | |
796 'content_renderer', | |
797 '../base/base.gyp:base', | |
798 '../skia/skia.gyp:skia', | |
799 '../ui/ui.gyp:ui', | |
800 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | |
801 '<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRende rTree.gyp:TestRunner', | |
802 ], | |
803 'include_dirs': [ | |
804 '..', | |
805 ], | |
806 'sources': [ | |
807 'public/test/layouttest_support.h', | |
808 'test/layouttest_support.cc', | |
809 ], | |
810 }, | |
789 ], | 811 ], |
790 }], | 812 }], |
791 ['chromeos==1 or OS=="linux" or OS=="win" or OS=="mac"', { | 813 ['chromeos==1 or OS=="linux" or OS=="win" or OS=="mac"', { |
792 'targets': [ | 814 'targets': [ |
793 { | 815 { |
794 'target_name': 'video_decode_accelerator_unittest', | 816 'target_name': 'video_decode_accelerator_unittest', |
795 'type': 'executable', | 817 'type': 'executable', |
796 'dependencies': [ | 818 'dependencies': [ |
797 'content', | 819 'content', |
798 '../base/base.gyp:base', | 820 '../base/base.gyp:base', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
922 'java_in_dir': '../content/shell/android/javatests', | 944 'java_in_dir': '../content/shell/android/javatests', |
923 'resource_dir': '../res', | 945 'resource_dir': '../res', |
924 'additional_src_dirs': ['../content/public/android/javatests/'], | 946 'additional_src_dirs': ['../content/public/android/javatests/'], |
925 }, | 947 }, |
926 'includes': [ '../build/java_apk.gypi' ], | 948 'includes': [ '../build/java_apk.gypi' ], |
927 }, | 949 }, |
928 ], | 950 ], |
929 }], | 951 }], |
930 ], | 952 ], |
931 } | 953 } |
OLD | NEW |